what will be the output off the following program?
#include<stdio.h>
int main()
{
int a;
a=015+0*71+5;
printf("%d,a");
return0;
}
Answer Posted / yateesh kumar
Garbage value,a
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is optimization in c?
Why is python slower than c?
What do you mean by keywords in c?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Write a progarm to find the length of string using switch case?
What is malloc return c?
What is string length in c?
Why c is a mother language?
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 “****”.
What are the scope of static variables?
How can you call a function, given its name as a string?
What is sizeof int in c?
Where are the auto variables stored?
How do you print only part of a string?
What are the storage classes in C?