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 / rohit kakade
this pgm has error because height is not defined in the main()
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is array name a pointer?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
i got 75% in all semester am i eligible for your company
Why do we use header files in c?
Explain spaghetti programming?
What is the difference between mpi and openmp?
How do you initialize pointer variables?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What are the usage of pointer in c?
Describe the modifier in c?
What is c programming structure?
Can you write a programmer for FACTORIAL using recursion?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is New modifiers?
Can we assign integer value to char in c?