What are the files which are automatically opened when a C
file is executed?
Answer / susie
Answer :
stdin, stdout, stderr (standard input,standard
output,standard error).
| Is This Answer Correct ? | 23 Yes | 4 No |
#define f(g,g2) g##g2 main() { int var12=100; printf("%d",f(var,12)); }
Design an implement of the inputs functions for event mode
how can i cast a char type array to an int type array
Implement a t9 mobile dictionary. (Give code with explanation )
1 Answers Amazon, Peak6, Yahoo,
main() { int x=5; for(;x!=0;x--) { printf("x=%d\n", x--); } } a. 5, 4, 3, 2,1 b. 4, 3, 2, 1, 0 c. 5, 3, 1 d. none of the above
#define a 10 int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } void foo() { #undef a #define a 50 }
C program to print magic square of order n where n > 3 and n is odd
main() { unsigned int i=10; while(i-->=0) printf("%u ",i); }
main() { extern i; printf("%d\n",i); { int i=20; printf("%d\n",i); } }
void ( * abc( int, void ( *def) () ) ) ();
Write a program that produces these three columns sequence nos. using loop statement Sequence nos. Squared Squared + 5 1 1 6 2 4 9 3 9 14 4 16 21 5 25 30
main() { 41printf("%p",main); }8