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 / guest
a u cannot have a constant at the left side of assignment
operator
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is the difference between c and python?
What are the 5 data types?
Mention four important string handling functions in c languages .
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Write a program to show the change in position of a cursor using c
what is stack , heap ,code segment,and data segment
What is difference between structure and union?
What are header files in c?
Where are some collections of useful code fragments and examples?
What is type qualifiers?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is assignment operator?
When we use void main and int main?
What is main return c?
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