main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / shital
ans is :32
Is This Answer Correct ? | 24 Yes | 1 No |
Post New Answer View All Answers
Explain the term printf() and scanf() used in c language?
What is the difference between a free-standing and a hosted environment?
Explain what is the difference between far and near ?
Is return a keyword in c?
how could explain about job profile
cavium networks written test pattern ..
Is multithreading possible in c?
What is the collection of communication lines and routers called?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Define the scope of static variables.
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What functions are used for dynamic memory allocation in c language?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What are high level languages like C and FORTRAN also known as?
Not all reserved words are written in lowercase. TRUE or FALSE?