

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of given program if user enter "xyz" ?#includevoid main(){ float age, AgeInSeconds; int value; printf("Enter your age:"); value=scanf("%f", &age); if(value==0){printf("\\nYour age is not valid"); } AgeInSeconds = 365 * 24 * 60 * 60 * age; printf("\\n You have lived for %f seconds", AgeInSeconds);} |
A. | nter your age : xyzYour age is not valid |
B. | nter your age: xyzYou have lived for 0 seconds |
C. | nter your age: xyzYour age is not valid |
D. | omplier error |
Answer» D. omplier error | |