Login
C Programming
1)
The first argument to be supplied at command-line must always be count of total arguments.
A)
True
B)
False
C)
The code counts number of blank lines in the file
D)
The code counts number of lines in the file
Next
Show Answer:
Show Answer
More Question
Bit fields CANNOT be used in union.
How many times the while loop will get executed if a short int is 2 byte wide #includestdio.hint main() int j=1; while(j = 255) printf(c d\n, j, j); j++; return 0;
Will the program compile in Turbo C #includestdio.hint main() int a=10, j; void k; j=k=&a; j++; k++; printf(u u\n, j, k); return 0;
Point out the error in the following program. #includestdio.hint main() struct emp char name[20]; float sal; ; struct emp e[10]; int i; for(i=0; i=9; i++) scanf(s f, e[i].name, &e[i].sal); return 0;
The keyword used to transfer control from a function back to the calling function is