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 is a pointer value and address in c?
Are bit fields portable?
Explain do array subscripts always start with zero?
What is a 'null pointer assignment' error?
What are valid signatures for the Main function?
When c language was developed?
What should malloc(0) do?
Why can't I perform arithmetic on a void* pointer?
Is printf a keyword?
Who invented b language?
Explain the use of 'auto' keyword
What is difference between structure and union in c?
Do pointers need to be initialized?
Differentiate between a structure and a union.
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?