wap to print "hello world" without using the main function.
Answer Posted / deepika
#include<stdio.h>
#define(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 ? | 7 Yes | 2 No |
Post New Answer View All Answers
which is conditional construct a) if statement b) switch statement c) while/for d) goto
In a header file whether functions are declared or defined?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Are local variables initialized to zero by default in c?
Explain what is the best way to comment out a section of code that contains comments?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is preprocessor with example?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is function prototype in c with example?
How do you do dynamic memory allocation in C applications?
What is #define?
What is a null string in c?
What is the best style for code layout in c?
how can I convert a string to a number?
What is the difference between procedural and declarative language?