main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / kamalg
5 20 1
| Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
Explain the advantages and disadvantages of macros.
What is the heap?
Tell us two differences between new () and malloc ()?
List the difference between a "copy constructor" and a "assignment operator"?
How can I list all of the predefined identifiers?
What is the purpose of realloc()?
What is wrong with this program statement?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
all c language question
c program for searching a student details among 10 student details
What is a double c?
How do you override a defined macro?
Do you know the difference between exit() and _exit() function in c?
Why main is not a keyword in c?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above