Difference between goto, long jmp() and setjmp()?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Write a function that will take in a phone number and output all possible alphabetical combinations
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
Compare array data type to pointer data type
How can I call a function, given its name as a string?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
what is the use of getch() function in C program.. difference b/w getch() and getche()??
29 Answers HCL, IBM, Infosys, TCS, Wipro,
Can we use any name in place of argv and argc as command line arguments?
Explain indirection?
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
void main() { int a=1; while(a++<=1) while(a++<=2); }
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4