int a=0,b=2;
if (a=0)
b=0;
else
b=*10;
What is the value of b ?
Answer Posted / kishore sharma
a=0;
b=2;
but
condition
if(a=0)(b=0)
so
b=*10;
answer is
b=b*10 (b=0)
b=0*10;
0
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Explain what is a pragma?
What is scope rule of function in c?
What are two dimensional arrays alternatively called as?
What are different types of variables in c?
What is main () in c?
What is the use of define in c?
How do you use a 'Local Block'?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
Is swift based on c?
What is openmp in c?
What is the difference between near, far and huge pointers?
What is data type long in c?
What is the difference between functions abs() and fabs()?
What is use of pointer?
Explain how do you use a pointer to a function?