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


Please Help Members By Posting Answers For Below Questions

Can we change the value of constant variable in c?

578


What is the meaning of ?

622


Describe the order of precedence with regards to operators in C.

633


What is the difference between break and continue?

606


What is sorting in c plus plus?

565






What are all different types of pointers in c?

579


What is the purpose of void in c?

619


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

669


State two uses of pointers in C?

642


What does node * mean?

714


What is merge sort in c?

647


a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

646


What is the value of h?

593


What is anagram in c?

521


Where does the name "C" come from, anyway?

645