List and explain the operators in C programming with example. Program : #include

Need help with assignments?

Our qualified writers can create original, plagiarism-free papers in any format you choose (APA, MLA, Harvard, Chicago, etc.)

Order from us for quality, customized work in due time of your choice.

Click Here To Order Now

List and explain the operators in C programming with example.
Program :
#include

List and explain the operators in C programming with example.
Program :
#include
#include
void main()
{
int a = 9,b = 4;
clrscr();
printf(“a+b = %d n”,a+b);
printf(“a-b = %d n”, a-b);
printf(“a*b = %d n”, a*b);
printf(“a/b = %d n”, a/b);
printf(“Remainder when a divided by b = %d n”, a%b);
printf(“a++ = %d n”, a++);
getch();
}
Output:
a+b = 13
a-b = 5
a*b = 36
a/b = 2
Remainder when a divided by b = 1
a++ = 10

Need help with assignments?

Our qualified writers can create original, plagiarism-free papers in any format you choose (APA, MLA, Harvard, Chicago, etc.)

Order from us for quality, customized work in due time of your choice.

Click Here To Order Now