main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answers were Sorted based on User's Feedback
How can you increase the allowable number of simultaneously open files?
Explain what is the general form of a c program?
Explain what is output redirection?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Explain setjmp()?
how to build a exercise findig min number of e heap with list imlemented?
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
How does free() know how many bytes to free?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
write a program to print largest number of each row of a 2D array