int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / fwfwgq
It will give segmentation fault in linux
| Is This Answer Correct ? | 6 Yes | 8 No |
Post New Answer View All Answers
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What are header files and what are its uses in C programming?
Explain what are compound statements?
What are static variables in c?
What is the description for syntax errors?
Explain threaded binary trees?
write a program to create a sparse matrix using dynamic memory allocation.
How can you tell whether a program was compiled using c versus c++?
What is static and auto variables in c?
How can I sort more data than will fit in memory?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Which is the memory area not included in C program? give the reason
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Is null equal to 0 in sql?
Can you subtract pointers from each other? Why would you?