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 |
Explain how can I write functions that take a variable number of arguments?
what is used instead of pointers in java than c?
What are the concepts introduced in OOPs?
how do you execute a c program in unix.
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What are header files in c?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
why we wont use '&' sing in aceesing the string using scanf
Do you know the purpose of 'register' keyword?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
What is the use of a static variable in c?