enum assigns numbers starting from 0, if not explicitly defined.
main() { float a = 5.375 ; char *p; int i; p = ( char* ) &a ; for ( i = 0; i <= 3 ; i++ ) printf ( " %02x ", (unsigned char ) p[i] ); }
The coding or scrambling of data so that humans cannot read them is known as encryption.
Preprocessor executes as a seperate pass before the execution of the compiler. So textual replacement of clrscr() to 100 occurs.The input program to compiler looks like this :
main ()
{
100;
printf("%d\n",100);
}
Note: 100; is an executable statement but with no action. So it doesn't give any problem.
Size of any array in c cannot be constantan variable.
A function cannot be defined inside the another function, but a function can be called inside a another function.
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.