How can you print HELLO WORLD without using "semicolon"?
Answer Posted / sivasankari
#include <stdio.h>
#define WEE puts( "Hello World!" );
int main( int argc, char * argv[] ) {
WEE
}
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Why void main is used in c?
Explain the bubble sort algorithm.
What is chain pointer in c?
What is array within structure?
Is main is a keyword in c?
What are local static variables?
Why do we need arrays in c?
What is difference between scanf and gets?
Why is c called "mother" language?
What is identifiers in c with examples?
What is a wrapper function in c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Write a simple code fragment that will check if a number is positive or negative.
What is a macro in c preprocessor?
Multiply an Integer Number by 2 Without Using Multiplication Operator