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
Can a file other than a .h file be included with #include?
Is there a built-in function in C that can be used for sorting data?
How many bytes are occupied by near, far and huge pointers (dos)?
I have a varargs function which accepts a float parameter?
What is the heap?
How will you write a code for accessing the length of an array without assigning it to another variable?
What is #line?
What are the __date__ and __time__ preprocessor commands?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is boolean in c?
Why is c still so popular?
What is function prototype in c language?
What is header file definition?
What is pointer & why it is used?
What is the process of writing the null pointer?