int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?

Answer Posted / ssssssssss

output
3

Is This Answer Correct ?    5 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do I swap bytes?

634


What is a shell structure examples?

594


Why is C language being considered a middle level language?

658


What is the difference between %d and %i?

598


How can you pass an array to a function by value?

605






What is call by reference in functions?

573


Can the curly brackets { } be used to enclose a single line of code?

717


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

678


Why is main function so important?

619


What is multidimensional arrays

635


What is meant by gets in c?

611


How can you increase the size of a statically allocated array?

622


What are the types of data structures in c?

604


What does the error message "DGROUP exceeds 64K" mean?

729


write a program to generate address labels using structures?

4009