can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / chandanakurukunda
#include<stdio.h>
void main()
{
if(printf("hello"))
{
}
}
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Explain what is the most efficient way to store flag values?
Explain what are reserved words?
What are structures and unions? State differencves between them.
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
Can we declare variables anywhere in c?
What are types of functions?
What is identifier in c?
What is the difference between fread buffer() and fwrite buffer()?
Why are all header files not declared in every c program?
What are the types of arrays in c?
What is malloc() function?
Explain what is the difference between the expression '++a' and 'a++'?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What are the 4 types of programming language?
What are different types of operators?