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
How can I get random integers in a certain range?
Can the curly brackets { } be used to enclose a single line of code?
Explain what is a static function?
What should malloc(0) do?
How can I write a function analogous to scanf?
Which are low level languages?
What is wrong with this program statement? void = 10;
Are there any problems with performing mathematical operations on different variable types?
What is the process to generate random numbers in c programming language?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What is the use of a ‘ ’ character?
Dont ansi function prototypes render lint obsolete?
what is the format specifier for printing a pointer value?
What is the use of volatile?
What is the general form of a C program?