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 pointer. What are function pointers in C?
Why is c platform dependent?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
write a c program to find the sum of five entered numbers using an array named number
What is switch in c?
Why do we use null pointer?
What is a double c?
What are types of structure?
Do character constants represent numerical values?
What is a good data structure to use for storing lines of text?
What is a structure member in c?
Explain how can I open a file so that other programs can update it at the same time?
Can we access the array using a pointer in c language?
Which are low level languages?
What is sizeof int?