what will be the output of this program........
main()
{
int a=2,b=4,c=6;
printf("%d");
}
why it gives the value of third variable.
Answer Posted / jayasree
2
| Is This Answer Correct ? | 7 Yes | 9 No |
Post New Answer View All Answers
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Explain what are header files and explain what are its uses in c programming?
What's the right way to use errno?
while initialization of array why we use a[][2] why not a[2][]...?
What is an endless loop?
What is the deal on sprintf_s return value?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Compare interpreters and compilers.
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
How to find a missed value, if you want to store 100 values in a 99 sized array?
Explain the properties of union. What is the size of a union variable
Can we use visual studio for c?
What is the difference between c &c++?
Is there a built-in function in C that can be used for sorting data?
What is structure padding and packing in c?