is assignment operator is arithmatic or not

Answer Posted / divya

assignment operators are differ from arithmatic operator

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different categories of functions in c?

651


What is ponter?

777


In a header file whether functions are declared or defined?

631


What are variables and it what way is it different from constants?

793


What is function what are the types of function?

563






What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file

672


How can I sort more data than will fit in memory?

632


What is the value of c?

576


Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?

660


What are multibyte characters?

647


What are the scope of static variables?

604


What is property type c?

609


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5216


What is static volatile in c?

580


What is the concatenation operator?

614