[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

C Programming :: Operators Expressions - Discussion

Home > C Programming > Operators Expressions > MCQs Questions Discussion

3 / 7

How many times will the printf statement be executed?

#include<stdio.h>
void main()
{ 
int n; n=10;
while(n < 10){
printf ("hello");
--n;
}  }

ANever

BOnce

C10

D9

Answer: Option (Login/Signup)

Show Explanation

Asked In ::

Post Your Answer Here:     

No Discussion on this question yet!