can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / gauravjeet singh gill
#include<stdio.h>
void main()
{
while(printf("hello")?0:1)
{
}
}
| Is This Answer Correct ? | 20 Yes | 5 No |
Post New Answer View All Answers
What is calloc()?
Compare and contrast compilers from interpreters.
What is structure data type in c?
Explain how can I write functions that take a variable number of arguments?
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 are comments and how do you insert it in a C program?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
Why flag is used in c?
Why header file is used in c?
How can I access an I o board directly?
What is volatile c?
If you know then define #pragma?
What are the keywords in c?
How is null defined in c?
What are the general description for loop statement and available loop types in c?