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 c token and types of c tokens?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Find MAXIMUM of three distinct integers using a single C statement
What are identifiers in c?
How can I discover how many arguments a function was actually called with?
What is the purpose of scanf() and printf() functions?
What is the difference between malloc calloc and realloc in c?
What is %g in c?
Why c is called a middle level language?
What are the different types of data structures in c?
Give the rules for variable declaration?
How can I trap or ignore keyboard interrupts like control-c?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What does volatile do?
Explain how can I right-justify a string?