How to print "I Love My India" without using semi colon?
Answer Posted / sam
#include<stdio.h>
void main()
{
clrscr();
if(printf("\"I love my India\""))
while(!kbhit()\\why use this semi colon
}
so it is wrong
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Is c dynamically typed?
Can one function call another?
What is the use of #include in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What does the error message "DGROUP exceeds 64K" mean?
What is string function in c?
What are structure types in C?
How can I make sure that my program is the only one accessing a file?
Can we change the value of static variable in c?
what are the different storage classes in c?
Is a pointer a kind of array?
How does pointer work in c?
Under what circumstances does a name clash occur?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Can we compile a program without main() function?