main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / nagi
5
20
1.25
| Is This Answer Correct ? | 2 Yes | 13 No |
Post New Answer View All Answers
Explain about the functions strcat() and strcmp()?
Can you define which header file to include at compile time?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is the general form of function in c?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
How #define works?
What is the scope of an external variable in c?
What are the differences between new and malloc in C?
What is keyword with example?
I came across some code that puts a (void) cast before each call to printf. Why?
What is assert and when would I use it?
What are integer variable, floating-point variable and character variable?
What is the use of a static variable in c?
How to Throw some light on the splay trees?
Should I learn data structures in c or python?