main()
{
int age;
float ht;
printf("Enter height and age");
scanf("%d%d",&height,&age);
if((age<=20)&&(ht>=5))
{printf("She loves you");}
else
{printf("She loves you");}
}
Answer Posted / ajay
out is same ,so programmer write the other message in else part ,
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is sizeof array?
Explain can static variables be declared in a header file?
What is the difference between printf and scanf in c?
What is n in c?
Explain how can I right-justify a string?
what do the 'c' and 'v' in argc and argv stand for?
what does static variable mean?
What is c value paradox explain?
Which one would you prefer - a macro or a function?
Which is better oop or procedural?
Explain what is operator promotion?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
What is the default value of local and global variables in c?
What is adt in c programming?