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 is meant by global static? why we have to use static variable instead of Global variable
What is else if ladder?
What is dynamic dispatch in c++?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
Differentiate between a for loop and a while loop? What are it uses?
Explain what are reserved words?
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
When a c file is executed there are many files that are automatically opened what are they files?
write a program to print the one dimensional array.
Can stdout be forced to print somewhere other than the screen?