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 / viji
float a=int b=3.5;
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
Explain what is the general form of a c program?
What is the difference between volatile and const volatile?
How to create struct variables?
What is indirection?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What does the && operator do in a program code?
Explain what does it mean when a pointer is used in an if statement?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is the use of printf() and scanf() functions?
what is the role you expect in software industry?
write a progrmm in c language take user interface generate table using for loop?
What is the purpose of realloc()?
Does * p ++ increment p or what it points to?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?