Answer Posted / arun kumar
#include<stdio.h>
#include<conio.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 ARUN");
getch();
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
How many types of sorting are there in c?
How can I write a function analogous to scanf?
Why do we need functions in c?
How important is structure in life?
What do you understand by friend-functions? How are they used?
Explain how can I prevent another program from modifying part of a file that I am modifying?
explain what is a newline escape sequence?
What are run-time errors?
Explain what are multidimensional arrays?
what is different between auto and local static? why should we use local static?
What is a function simple definition?
Can you please explain the difference between syntax vs logical error?
Is register a keyword in c?
Explain what is the difference between functions getch() and getche()?
Why does everyone say not to use gets?