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
how to write a c program to print list of fruits in alpabetical order?
What are identifiers in c?
How many levels of indirection in pointers can you have in a single declaration?
Why & is used in scanf in c?
Why is void main used?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What are dangling pointers in c?
What is wrong with this program statement?
write a program to display all prime numbers
What is scanf () in c?
What is the use of volatile?
Discuss the function of conditional operator, size of operator and comma operator with examples.
Subtract Two Number Without Using Subtraction Operator
Differentiate between full, complete & perfect binary trees.
Explain what standard functions are available to manipulate strings?