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); } |
A program Input Roll,Marks,Grade and print on screen: 1 2 3 4 5 6 7 8 9 10 11 12 13[...]
Calculate and print "6+4=10" result on screen 1 2 3 4 5 6 7 8 #include<stdio.h> int [...]
Enter any two nob and print Credit goes to: Kamran Gee 1 2 3 4 5 6 7 8 #include<stdio.h&[...]
Sum,Difference,Multiplication[...]
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.