wap to print "hello world" without using the main function.
Answer Posted / uttam kumar das
#include<stdio.h>
#include<conio.h>
#define uttam main
uttam()
{
printf("hello world");
getch();
return 0;
}
| Is This Answer Correct ? | 8 Yes | 6 No |
Post New Answer View All Answers
How do you write a program which produces its own source code as output?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Explain c preprocessor?
What is cohesion in c?
What is linear search?
Why enum is used in c?
How do I convert a string to all upper or lower case?
Why is it important to memset a variable, immediately after allocating memory to it ?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is variable and explain rules to declare variable in c?
Explain what is the difference between the expression '++a' and 'a++'?
How can I read and write comma-delimited text?
What is sizeof c?
Which is best book for data structures in c?