Loading, please wait...

C Programming Multiple Choice Questions And Answers

Search here for MCQs

Are you preparing for the next job interviews? If yes, trust me this post will help you also we'll suggest you check out a big collection for Programming Full Forms that may help you in your interview:

List of Programming Full Forms 

31. Which of the following is not an output

  • a / = 10;
  • a * = 10;
  • a ! = 10;
  • a % = 10;

32. Real number is treated as

  • double
  • long double
  • long int
  • float

33. No of loops in C

  • Only 2
  • Only 3
  • Only 4
  • Only 1

34. The concept of two functions with same name is know as?

  • Function overloading
  • Function overriding
  • Function loading
  • Function renaming

35. Output is

#include void main() { int x = 1, y = 0, z = 5; int a = x && y && z++; printf("%d", z); }
  • Output: 6
  • Output: 0
  • Output: 2
  • Output: 5