Advertising

C Programming Coding Questions And Answers PDF

  1. #include <stdio.h>
  2. void main()
  3. {
  4. int x = 5;
  5. if (x < 1)
  6. printf(“hello”);
  7. if (x == 5)
  8. printf(“hi”);
  9. else
  10. printf(“no”);
  11. }