wap to print "hello world" without using the main function.
Answer Posted / hemanthkumar
#include<stdio.h>
#define hemanth main
public hemanth()
{
printf("hello world");
}
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Explain what will the preprocessor do for a program?
What is typeof in c?
what are enumerations in C
How can you tell whether a program was compiled using c versus c++?
What is sizeof array?
What are enums in c?
Why we use conio h in c?
Where static variables are stored in c?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
How is pointer initialized in c?
Without Computer networks, Computers will be half the use. Comment.
How many types of sorting are there in c?
Does c have function or method?
Can you subtract pointers from each other? Why would you?