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
What is a method in c?
What is a program flowchart and how does it help in writing a program?
How do you determine the length of a string value that was stored in a variable?
What is merge sort in c?
How can I do graphics in c?
Can a program have two main functions?
I came across some code that puts a (void) cast before each call to printf. Why?
How to declare pointer variables?
Is c still used?
Why c is called top down?
Is main an identifier in c?
How can I split up a string into whitespace-separated fields?
How can type-insensitive macros be created?
What is hashing in c language?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?