main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / a. k
20 1 5
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is stack in c?
What is an auto variable in c?
Are local variables initialized to zero by default in c?
Describe explain how arrays can be passed to a user defined function
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
What are the disadvantages of c language?
Write a program to reverse a linked list in c.
Is c still used?
What are the types of pointers?
What is dynamic variable in c?
Can we declare a function inside a function in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What are the differences between new and malloc in C?
What is nested structure with example?
State two uses of pointers in C?