You are not logged in.
- Index
- » Quiz Questions
- » Program User:
- 0
Pages:: 1
#1 2015-09-15 04:09:15
Program User:
C Programming Quizzes C Language Control Structures
Directions:
What is the output of given program if user enter "xyz"?
Question:
#include<stdio.h>
void 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);
}
Option A):
None
Option B):
Enter your age: xyz You have lived for 0 seconds
Option C):
Enter your age: xyz Your age is not valid
Option D):
Complier error
Correct Answer is Option C):
Enter your age: xyz Your age is not valid
You cannot discover the new oceans unless you have the courage to lose the sight of the shore.
Offline
2015-09-15 04:09:15
- Advertisement
- Ads By Google
Re: Program User:
\n
Pages:: 1