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
What is meant by high-order and low-order bytes?
How to set file pointer to beginning c?
Is it valid to address one element beyond the end of an array?
What is variable and explain rules to declare variable in c?
What is variable declaration and definition in c?
Is main is a keyword in c?
What is the difference between functions abs() and fabs()?
Explain what standard functions are available to manipulate strings?
Explain the difference between ++u and u++?
What are the different categories of functions in c?
How many bytes is a struct in c?
how to find anagram without using string functions using only loops in c programming
What is the use of putchar function?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
With the help of using classes, write a program to add two numbers.