wap to print "hello world" without using the main function.
Answer Posted / nitish_bhasin
#include<stdio.h>
#define nitish main
void nitish()
{
printf("Hello World");
}
| Is This Answer Correct ? | 40 Yes | 20 No |
Post New Answer View All Answers
What are formal parameters?
Is there a way to jump out of a function or functions?
How do you generate random numbers in C?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What's the right way to use errno?
What does sizeof int return?
Is c pass by value or reference?
Explain which function in c can be used to append a string to another string?
Explain the ternary tree?
How can variables be characterized?
What is New modifiers?
What is s in c?
What are the advantages of c language?
What does 3 periods mean in texting?
Can a function argument have default value?