What is calloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
write a program whose output will be- 1 12 123 1234
Explain the use of function toupper() with and example code?
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
Write a program to exchange two variaables without temp
#define f(x) main() { printf("\n%d",f(2+2)); }
What is getch () for?
What is meant by errors and debugging?
How can I run c program?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
how to implement stack work as a queue?
I have a varargs function which accepts a float parameter?