What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / guest
error exist due to nat declaring datatype for i
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is default value of global variable in c?
How to explain the final year project as a fresher please answer with sample project
What is #define?
Is return a keyword in c?
Define Spanning-Tree Protocol (STP)
Create a simple code fragment that will swap the values of two variables num1 and num2.
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
what is the role you expect in software industry?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Explain how do you convert strings to numbers in c?
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.
What is meant by errors and debugging?
What do you understand by normalization of pointers?
What does the format %10.2 mean when included in a printf statement?
any "C" function by default returns an a) int value b) float value c) char value d) a & b