What is NULL pointer?
No Answer is Posted For this Question
Be the First to Post Answer
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
What is floating point constants?
will u please send me the placement papers to my mail???????????????????
What is the function of volatile in c language?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
What is the Difference between Class and Struct?
Write code for finding depth of tree
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STRUCTURES
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
Does c have circular shift operators?