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 / valli
a is error because
a=b=3=4;
in this 3=4;
is wrong
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
int i=10; printf("%d %d %d", i, i=20, i);
write a c program to find the sum of five entered numbers using an array named number
What is the difference between local variable and global variable in c?
What is #line?
What is the difference between c &c++?
What are the types of bitwise operator?
What is formal argument?
What is meant by initialization and how we initialize a variable?
what is event driven software and what is procedural driven software?
how to write a c program to print list of fruits in alpabetical order?
What is the main difference between calloc () and malloc ()?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is the need of structure in c?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is the difference between procedural and functional programming?