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
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);
Hi can anyone tell what is a start up code?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Explain 'bit masking'?
Explain what does the function toupper() do?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What are the key features in c programming language?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
Why is main function so important?
What is structure padding and packing in c?
Is a house a mass structure?
What is calloc() function?
What is the difference between #include
Where does the name "C" come from, anyway?
What is graph in c?