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
How can I write functions that take a variable number of arguments?
Is a house a shell structure?
I have seen function declarations that look like this
How can I dynamically allocate arrays?
How can I avoid the abort, retry, fail messages?
How to set file pointer to beginning c?
What is the use of structure padding in c?
What is pass by value in c?
How do you sort filenames in a directory?
Is main is a keyword in c?
What is abstract data structure in c?
How can I find out the size of a file, prior to reading it in?
What is the meaning of && in c?
What is c mainly used for?
what is the basis for selection of arrays or pointers as data structure in a program