Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Input and Output | Question 11

Improve Article
Save Article
  • Difficulty Level : Easy
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article

Predict the output of following program?




#include <stdio.h>
int main(void
{
   int x = printf("GeeksQuiz");
   printf("%d", x);
   return 0;
}


(A) GeeksQuiz9
(B) GeeksQuiz10
(C) GeeksQuizGeeksQuiz
(D) GeeksQuiz1


Answer: (A)

Explanation: The printf function returns the number of characters successfully printed on the screen. The string “GeeksQuiz” has 9 characters, so the first printf prints GeeksQuiz and returns 9.

Quiz of this Question

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!