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 / satya
identify the in correct expression
statement1: a.a=b=3=4;
statement2: b.a=b=c=d=0;
statement3: float a=int b=3.5;
statement4: d.int a;
statement5: float b;
statement6: a=b=3.5;
Here statement1, statement3, statement4 are incorrect statements and rest statements are correct.
Satya/Odisha/Balasore.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain data types & how many data types supported by c?
How can I make it pause before closing the program output window?
Write a factorial program using C.
What is pointer to pointer in c with example?
What type of function is main ()?
What are dangling pointers? How are dangling pointers different from memory leaks?
What does do in c?
Explain is it better to bitshift a value than to multiply by 2?
What is 2 d array in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What are the modifiers available in c programming language?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Write a program to check armstrong number in c?
What are different types of operators?