can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / abhradeep chatterjee
#include<stdio.h>
void main()
{
if(printf("Hello")){}
}
this is the correct answer.
| Is This Answer Correct ? | 22 Yes | 4 No |
Post New Answer View All Answers
What are disadvantages of C language.
What is null pointer in c?
What does int main () mean?
write a program to create a sparse matrix using dynamic memory allocation.
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What is "Duff's Device"?
What is hash table in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Define VARIABLE?
What does 4d mean in c?
What is an auto keyword in c?
What is meant by preprocessor in c?
What is the difference between class and object in c?
What are nested functions in c?
What's a good way to check for "close enough" floating-point equality?