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;

Answers were Sorted based on User's Feedback



identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int ..

Answer / valli

a is error because
a=b=3=4;
in this 3=4;
is wrong

Is This Answer Correct ?    15 Yes 1 No

identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int ..

Answer / guest

a u cannot have a constant at the left side of assignment
operator

Is This Answer Correct ?    9 Yes 0 No

identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int ..

Answer / mohmedali

b

Is This Answer Correct ?    9 Yes 4 No

identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int ..

Answer / 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

identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int ..

Answer / 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

identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int ..

Answer / mohmedali

a. a=b=3=4;

Is This Answer Correct ?    4 Yes 4 No

identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int ..

Answer / vint

Answer b and d are Correct.
b.a=b=c=d=0;
d.int a;
float b;
a=b=3.5;

Is This Answer Correct ?    0 Yes 0 No

identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int ..

Answer / viji

float a=int b=3.5;

Is This Answer Correct ?    2 Yes 6 No

Post New Answer

More C Interview Questions

How the processor registers can be used in C ?

7 Answers   HP,


what is the difference between i++ and ++i?

5 Answers  


What is the difference between exit() and _exit() function in c?

0 Answers  


i want to know the procedure of qualcomm for getting a job through offcampus

0 Answers   HCL,


What is FIFO?

0 Answers  






What are the types of data types and explain?

0 Answers  


main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }

1 Answers   Vector, Vector India,


how to get the starting address of file stored in harddisk through 'C'program.

2 Answers   Siemens,


Explain what are header files and explain what are its uses in c programming?

0 Answers  


Explain how do you search data in a data file using random access method?

0 Answers  


What does it mean when the linker says that _end is undefined?

0 Answers  


What is string length in c?

0 Answers  


Categories