Find errors
(1) m = ++a*5;
(2) a = b ++ -c*2;
(3)y = sqrt (1000);
Answer Posted / pranav
2) has an error because the LVALUE (b++) is not yet
incremented before evaluation
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the two types of functions in c?
What is struct node in c?
Explain zero based addressing.
Explain what is a 'locale'?
Explain what are multibyte characters?
Is sizeof a keyword in c?
Are negative numbers true in c?
Why cant I open a file by its explicit path?
What are c preprocessors?
Write the control statements in C language
Explain what are reserved words?
What are the advantages of using macro in c language?
What is cohesion in c?
What is the default value of local and global variables in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?