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
Why is c called a mid-level programming language?
What are the difference between a free-standing and a hosted environment?
What is the difference between exit() and _exit() function?
What is return type in c?
Explain c preprocessor?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is stack in c?
What is the use of extern in c?
What is the method to save data in stack data structure type?
What is self-referential structure in c programming?
Why functions are used in c?
is it possible to create your own header files?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Difference between strcpy() and memcpy() function?