How to print "I Love My India" without using semi colon?
Answer Posted / sanjay
On VC++ and on Unix. Dont use getch();
as it was clearly mentioned for not to use ;
#include<stdio.h>
main()
{
if(printf("I love my India"))
}
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What are the advantages of c language?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Do pointers need to be initialized?
Explain how can you tell whether two strings are the same?
What are reserved words?
What is hungarian notation? Is it worthwhile?
What is d'n in c?
What is double pointer in c?
Is main a keyword in c?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What are control structures? What are the different types?
What are called c variables?
What is data structure in c language?
What is the difference between functions abs() and fabs()?
What is the use of static variable in c?