What happens if header file is included twice?
No Answer is Posted For this Question
Be the First to Post Answer
what is the size of an integer variable?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
What is data types?
What is wrong with this declaration?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
Is the exit() function same as the return statement? Explain.
0 Answers Agilent, ZS Associates,
What language is windows 1.0 written?
Explain function?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Differentiate between full, complete & perfect binary trees.
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,