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


Please Help Members By Posting Answers For Below Questions

What is the use of f in c?

561


write a c program for swapping two strings using pointer

2098


What is pointer to pointer in c?

636


What is union in c?

641


1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures

2747






Explain high-order bytes.

678


Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

5060


What are the types of unary operators?

666


What is a sequential access file?

650


What is define c?

577


simple program of graphics and their output display

1471


Explain what is the benefit of using an enum rather than a #define constant?

728


Explain 'bus error'?

565


How can I avoid the abort, retry, fail messages?

665


The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?

773