Find errors
(1) m = ++a*5;
(2) a = b ++ -c*2;
(3)y = sqrt (1000);
Answer Posted / renu
m will be error because the increment should be done before
the assignment symbol.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are header files and what are its uses in C programming?
What do you mean by command line argument?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is malloc calloc and realloc in c?
Can the sizeof operator be used to tell the size of an array passed to a function?
Explain how can you avoid including a header more than once?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What is difference between main and void main?
How does sizeof know array size?
Write programs for String Reversal & Palindrome check
What are the advantages of the functions?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What is the value of c?
How many bytes is a struct in c?
What header files do I need in order to define the standard library functions I use?