main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Post New Answer View All Answers
how can I convert a string to a number?
what is the syallabus of computer science students in group- 1?
What language is c written?
Define the scope of static variables.
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is variable and explain rules to declare variable in c?
What is a nested loop?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What are near, far and huge pointers?
What are header files in c programming?
Why is it important to memset a variable, immediately after allocating memory to it ?
Why enum is used in c?
What is auto keyword in c?
What are derived data types in c?
Why & is used in c?