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");}
}
Answers were Sorted based on User's Feedback
Answer / rohit kakade
this pgm has error because height is not defined in the main()
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ajay
out is same ,so programmer write the other message in else part ,
| Is This Answer Correct ? | 0 Yes | 0 No |
My teacher ask to make a program that can: Insert record in front Insert record at the end Insert in between Search node record Delete record in front Delete record at the end Delete record in between Using Data structure Linked List type. But I'm really confused about the codes and I can't go through. Please help Thanks in advance. Also here is my unfinished code if someone can make changes it will be more good.
The file stdio.h, what does it contain?
Give the rules for variable declaration?
How to reverse a string using a recursive function, with swapping?
When is a “switch” statement preferable over an “if” statement?
can anyone proide me reading material on svit00ef27@yahoo.com please thanx in advance
Explain what is the benefit of using enum to declare a constant?
what is the use of fflush() function?
Why c is procedure oriented?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is a header file?