can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / geeta
#include<stdio.h>
void main()
{
if(printf("Hello World!!!")!=0)
{}
}
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
What are local variables c?
When is a void pointer used?
Which one would you prefer - a macro or a function?
Is main a keyword in c?
Why do we use return in c?
what is a function method?give example?
Are there constructors in c?
What is difference between main and void main?
What is array in C
What is "Duff's Device"?
Do you know what are bitwise shift operators in c programming?
Is null always defined as 0(zero)?
while initialization of array why we use a[][2] why not a[2][]...?
What is n in c?
What is the description for syntax errors?