kaldin

  • Login

C Programming


1) A preprocessor directive is a message from programmer to the preprocessor.
  • A)

  • B)

  • C)

  • D)

Next
Show Answer:
Show Answer


More Question
The first argument to be supplied at command-line must always be count of total arguments.
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;
Which of the following errors would be reported by the compiler on compiling the program given below #includestdio.hint main() int a = 5; switch(a) case 1: printf(First); case 2: printf(Second); case 3 + 2: printf(Third); case 5: printf(Final); break; return 0;
What will be the output of the program #includestdio.hint main() int i=4, j=8; printf(d, d, d\n, ij&ji, ij&ji, i^j); return 0;
The library function used to find the last occurrence of a character in a string is