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
Explain continue keyword in c
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is void main () in c?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Why flag is used in c?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Explain the use of 'auto' keyword in c programming?
What is hashing in c?
What is the use of #include in c?
List the different types of c tokens?
What is assignment operator?
What are different types of pointers?
How can you draw circles in C?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is nested structure?