What is a union?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
What is the purpose of the fflush() function in C?
What is the difference between #include <header file> and #include “header file”?
What is 'bus error'?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
explain what is fifo?
write a program to find out prime number using sieve case?
Why ca not I do something like this?
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
How can I get the current date or time of day in a c program?
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a