can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / vinothkumar.r
#include<stdio.h>
int main()
{
while(printf("Hai")&&0){}
}
| Is This Answer Correct ? | 42 Yes | 15 No |
Post New Answer View All Answers
Explain what is the use of a semicolon (;) at the end of every program statement?
How can I implement sets or arrays of bits?
Why dont c comments nest?
diff between exptected result and requirement?
Explain null pointer.
Explain the properties of union. What is the size of a union variable
What is the size of structure pointer in c?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
How can I sort more data than will fit in memory?
What is the difference between test design and test case design?
How can this be legal c?
What are the __date__ and __time__ preprocessor commands?
How to write c functions that modify head pointer of a linked list?
Write a program to swap two numbers without using third variable in c?
What is the right way to use errno?