A program Convert it into c program "a^2 + b^2 +ab and display its result.
1 2 3 4 5 6 7 8 | #include<stdio.h> int main() { int a,b; a=2; b=6; printf("a^2+b^2+ab=%d",a*a+b*b+a*b); } |
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; a=2; b=6; printf("a^2+b^2+ab=%d",a*a+b*b+a*b); } |
Post a Comment