A program Calculate and print "6*4-9=?" the result on screen.
1 2 3 4 5 6 7 8 | #include<stdio.h> int main() { int a,b,c; a=6; b=4; c=9; printf("%d*%d-%d=%d",a,b,c,a*b-c); } |
Best of Luck
A blog about programming languages and this Blog specially Create for learning languages like C language,C++ Language, Data Structure and Algorithm.
1 2 3 4 5 6 7 8 | #include<stdio.h> int main() { int a,b,c; a=6; b=4; c=9; printf("%d*%d-%d=%d",a,b,c,a*b-c); } |
Post a Comment