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
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Why do we use int main?
What is register variable in c language?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
what is the significance of static storage class specifier?
Which built-in library function can be used to match a patter from the string?
How can I ensure that integer arithmetic doesnt overflow?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
how to count no of words,characters,lines in a paragraph.
What is the explanation for the dangling pointer in c?
how can use subset in c program and give more example
What is a good data structure to use for storing lines of text?
What is the difference between break and continue?
How can variables be characterized?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?