main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Post New Answer View All Answers
Explain high-order and low-order bytes.
How does #define work?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
How can I manipulate individual bits?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Can the size of an array be declared at runtime?
Explain pointer. What are function pointers in C?
What does main () mean in c?
What is a list in c?
what is the diffrenet bettwen HTTP and internet protocol
What is type qualifiers?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Why is c faster?
What are control structures? What are the different types?