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


Please Help Members By Posting Answers For Below Questions

What does & mean in scanf?

823


What is abstract data structure in c?

748


What are variables c?

805


What are qualifiers?

792


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.

5196


Differentiate between ordinary variable and pointer in c.

834


What is difference between constant pointer and constant variable?

904


Which is better oop or procedural?

807


What is structure in c definition?

783


Explain the difference between structs and unions in c?

760


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.?

809


What are dangling pointers in c?

825


how we can make 3d venturing graphics on outer interface

4342


What is the use of function overloading in C?

879


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.

1840