How to print "I Love My India" without using semi colon?
Answer Posted / manoj singh
#include<stdio.h>
void main()
{
clrscr();
if(printf("\"I love my India\""))
while(!kbhit());
}
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What is the code in while loop that returns the output of given code?
What does c mean in standard form?
What is meant by errors and debugging?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is an expression?
What is the difference between malloc() and calloc() function in c language?
What is calloc()?
When should we use pointers in a c program?
How can a program be made to print the line number where an error occurs?
What is the right type to use for boolean values in c?
Explain how do you list a file’s date and time?
What are header files and explain what are its uses in c programming?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is malloc calloc and realloc in c?
What is merge sort in c?