Find errors
(1) m = ++a*5;
(2) a = b ++ -c*2;
(3)y = sqrt (1000);
Answer Posted / sumalatha
b is the error because decrement of c is instead of --c it has -c
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Explain how can I convert a number to a string?
what are bit fields? What is the use of bit fields in a structure declaration?
Can we use any name in place of argv and argc as command line arguments?
Why main function is special give two reasons?
What is a void pointer in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
How pointer is different from array?
How can I change the size of the dynamically allocated array?
Write a program for finding factorial of a number.
What are the different types of endless loops?
What is the use of bitwise operator?
What is a constant and types of constants in c?
How old is c programming language?
Why we use void main in c?