Declare an array of N pointers to functions returning
pointers to functions returning pointers to characters?
posted by surbhi just now main() { float a = 5.375; char *p; int i; p=(char*)&a; for(i=0;i<=3;i++) printf("%02x",(unsigned char) p[i]); } how is the output of this program is :: 0000ac40 please let me know y this output has come
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
main() { int a[10]; printf("%d",*a+1-*a+3); }
Write a Program that Inputs 10 Numbers in an Array and Show the Maximum Number
main() { int i=3; switch(i) { default:printf("zero"); case 1: printf("one"); break; case 2:printf("two"); break; case 3: printf("three"); break; } }
source code for delete data in array for c
What is data _null_? ,Explain with code when u need to use it in data step programming ?
void main() { static int i=5; if(--i){ main(); printf("%d ",i); } }
union u { struct st { int i : 4; int j : 4; int k : 4; int l; }st; int i; }u; main() { u.i = 100; printf("%d, %d, %d",u.i, u.st.i, u.st.l); } a. 4, 4, 0 b. 0, 0, 0 c. 100, 4, 0 d. 40, 4, 0
#define SQR(x) x * x main() { printf("%d", 225/SQR(15)); } a. 1 b. 225 c. 15 d. none of the above
main() { char *p; p="%d\n"; p++; p++; printf(p-2,300); }
How we print the table of 3 using for loop in c programing?