What is malloc calloc and realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a far pointer?What is the utility?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
number of times a digit is present in a number
How do you write a program which produces its own source code as its output?
how to swap four numbers without using fifth variable?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
p*=(++q)++*--p when p=q=1 while(q<=6)
void main() { int a=1; while(a++<=1) while(a++<=2); }
Which header file is used for clrscr?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
How can I split up a string into whitespace-separated fields?