wap to print "hello world" without using the main function.
Answer Posted / vaibhav
@Deepika some correction:
#include<stdio.h>
#define decode(s,t,u,m,p,e,d) m##s##u##t
#define begin decode(a,n,i,m,a,t,e)
int begin()
{
printf("Hello World");
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the use of function in c?
How can you tell whether two strings are the same?
Why doesnt that code work?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is nested structure with example?
Explain what is the benefit of using #define to declare a constant?
What is the difference between the local variable and global variable in c?
What is New modifiers?
What are the types of data types and explain?
How can you check to see whether a symbol is defined?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is structure padding and packing in c?
What does %d do?
What is a null pointer in c?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above