Write a program to demonstrate the results obtained by using the arithmetic operators on integer and floating point number.
C Programming Language Operators and Enums in C Language (Article) Operators and Enums in C Language (Program)
894Program:
/* Program: Write a program to demonstrate the results obtained by using the arithmetic operators on integer and floating point number. Author: www.atnyla.com */ #include "stdio.h" int main() { int a = 25; int b = 2; int result; float c = 25.0; float d = 2.0; printf("6 + a / 5 * b = %d \n", 6 + a / 5 * b); printf("a / b * b = %d\n", a / b * b); printf("c / d * d = %f\n", c / d * d); printf("-a = %d\n",-a); return 0; }
Output:
6 + a / 5 * b = 16 a / b * b = 24 c / d * d = 25.000000 -a = -25 Press any key to continue . . .
Explanation:
None
This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.