can we print any string in c language without using
semicolon(;)(terminator) in whole program.
Answer Posted / geeta
#include<stdio.h>
void main()
{
if(printf("Hello World!!!")!=0)
{}
}
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
How do we make a global variable accessible across files? Explain the extern keyword?
Explain how can I manipulate strings of multibyte characters?
Write a code to remove duplicates in a string.
What are the basic data types associated with c?
Is it fine to write void main () or main () in c?
Explain how can you determine the size of an allocated portion of memory?
How can I read data from data files with particular formats?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What are header files in c programming?
How are strings stored in c?
Explain the difference between call by value and call by reference in c language?
What is a function simple definition?
Are the variables argc and argv are always local to main?
Is it valid to address one element beyond the end of an array?
What is a stream water?