How. To pass the entrance test
write a c program for greatest of three numbers without using if statment
What is use of null pointer in c?
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
#define f(x) main() { printf("\n%d",f(2+2)); }
What is the use of ?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What is the auto keyword good for?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
What is the use of linkage in c language?
prog for 1st five prime numbers in 2^x - 1
What is calloc malloc realloc in c?