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 is null pointer constant?
What is the explanation for the dangling pointer in c?
What extern c means?
Why c is called a middle level language?
Can we declare a function inside a function in c?
What is structure in c definition?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What is && in c programming?
Explain what are the standard predefined macros?
What is preprocessor with example?
Why does notstrcat(string, "!");Work?
What is volatile variable in c?
Explain what is the benefit of using enum to declare a constant?
What are predefined functions in c?
What is use of pointer?