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
Using which language Test cases are added in .ptu file of RTRT unit testing???
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Linked lists -- can you tell me how to check whether a linked list is circular?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is dynamic dispatch in c++?
how many key words availabel in c a) 28 b) 31 c) 32
How to declare a variable?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Why isn't it being handled properly?
What is the code in while loop that returns the output of given code?
What are local static variables? How can you use them?
What are different types of operators?
what is the different bitween abap and abap-hr?
What are void pointers in c?
What is #include cctype?