Difference between exit() and _exit() function?
No Answer is Posted For this Question
Be the First to Post Answer
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
What are loops in c?
How can you increase the size of a dynamically allocated array?
what is the difference between postfix and prefix unary increment operators?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
convert 12345 to 54321 withoutusing strig
How are 16- and 32-bit numbers stored?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Explain what are the different data types in c?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
What does calloc stand for?
Write a c program to demonstrate Type casting in c?