Answer Posted / siva koratani
#include<stdio.h>
#define begin m##a##i##n
void begin()
{
printf("Hello");
}
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
What is the difference between scanf and fscanf?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Is that possible to add pointers to each other?
What is formal argument?
What are the 5 elements of structure?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
What is the use of a ‘ ’ character?
What is the stack in c?
Why do we use int main?
What is the purpose of void in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is malloc calloc and realloc in c?
What does 2n 4c mean?
while initialization of array why we use a[][2] why not a[2][]...?