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
what are the advantages of a macro over a function?
Write a program to swap two numbers without using third variable in c?
Why does everyone say not to use gets?
What is nested structure in c?
Can one function call another?
Explain what is the heap?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What is the use of getch ()?
Explain how do you search data in a data file using random access method?
What is the process to generate random numbers in c programming language?
Disadvantages of C language.
What is difference between far and near pointers?
What is the difference between c and python?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Which function in C can be used to append a string to another string?