C Programming

Hiiiiii Friends,

I created this blog to share my knowledge. Whenever i find something Interesting, i post it so that everyone may know about this.
If you like my posts then tell your friends and spread the knowledge.

Tutorials

Some Undefined behaviour of C
Find Output :

1. int i = 5;
printf("%d" , i++ * ++i);

2. int a[5] ,i = 1;
a[i] = ++;

These terms are undefined in C, compilers may generate the output of these sort of terms but always remember to answer such question 'unfined means not defined'