As per C language standard, which of the followings is/are not keyword(s)? Pick the best statement. auto make main sizeof elseif (A) None of the… Read More
Tag Archives: C Quiz – 103
Which of the following functions from “stdio.h” can be used in place of printf()? (A) fputs() with FILE stream as stdout. (B) fprintf() with FILE… Read More
What’s going to happen when we compile and run the following C program snippet? #include "stdio.h" int main() { int a = 10; printf("=%d… Read More
What’s going to happen when we compile and run the following C program snippet? #include "stdio.h" int main() { int a = 10; int b… Read More
For a given integer, which of the following operators can be used to “set” and “reset” a particular bit respectively? (A) | and & (B)… Read More