identify the in correct expression
a.a=b=3=4;
b.a=b=c=d=0;
float a=int b=3.5;
d.int a;
float b;
a=b=3.5;
Answer Posted / manish sonia
identify the in correct expression
a.a=b=3=4;
b.a=b=c=d=0;
float a=int b=3.5;
d.int a;
float b;
a=b=3.5;
in first st 4 is not assigned in the 3 so lvalue required.
second is correct.
third is incorrect
third is alsoincorrect
manish soni cgc chandigarh...
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How many types of arrays are there in c?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What is void pointers in c?
How can you find out how much memory is available?
What is difference between class and structure?
What is the use of volatile?
Why use int main instead of void main?
All technical questions
What is structure in c explain with example?
What is c variable?
regarding pointers concept
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is union in c?