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
Explain the use of function toupper() with and example code?
Can you assign a different address to an array tag?
What is define c?
how do you execute a c program in unix.
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Why we write conio h in c?
Write a program to know whether the input number is an armstrong number.
What are the Advantages of using macro
Explain is it better to bitshift a value than to multiply by 2?
Can you write the function prototype, definition and mention the other requirements.
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What are the types of pointers?
What is header file in c?
Difference between malloc() and calloc() function?
Why malloc is faster than calloc?