int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / fazlur
the output will b 4.
Is This Answer Correct ? | 6 Yes | 18 No |
Post New Answer View All Answers
What does & mean in scanf?
What is abstract data structure in c?
What are variables c?
What are qualifiers?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
Differentiate between ordinary variable and pointer in c.
What is difference between constant pointer and constant variable?
Which is better oop or procedural?
What is structure in c definition?
Explain the difference between structs and unions in c?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What are dangling pointers in c?
how we can make 3d venturing graphics on outer interface
What is the use of function overloading in C?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.