Answer Posted / kamini
#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)
void begin()
{
printf(" hello ARUN");
getch();
}
Ans was correct but if the function is declare int dn it has to be return some value so it should be void.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is the difference between if else and switchstatement
What are inbuilt functions in c?
What are static variables in c?
What is the difference between abs() and fabs() functions?
What is the significance of scope resolution operator?
What are the advantages of external class?
Explain what is the use of a semicolon (;) at the end of every program statement?
How can I read a binary data file properly?
Write a program to print all permutations of a given string.
What does %p mean?
how to execute a program using if else condition and the output should enter number and the number is odd only...
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Differentiate between full, complete & perfect binary trees.
Tell me what is the purpose of 'register' keyword in c language?