is assignment operator is arithmatic or not
Answers were Sorted based on User's Feedback
Answer / sweta purwar
not because airthmatic operators only
addition,multiplication,substraction,division
| Is This Answer Correct ? | 19 Yes | 3 No |
Answer / srsabariselvan
you named as "assignment operator"
then how it'll be arithmetic operator.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / divya
assignment operators are differ from arithmatic operator
| Is This Answer Correct ? | 3 Yes | 1 No |
what are # pragma staments?
What are the 5 organizational structures?
how can f be used for both float and double arguments in printf? Are not they different types?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What are external variables in c?
What is boolean in c?
code for reverse alternate words from astring
character array A[12] can hold
what are bps & baud rates? differentiate these two?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
How can you find out how much memory is available?