#include <stdlib.h>
int main()
{
int a=2,b=3,c=4,d;
/*STATIC*/
d=a+b+c;
printf("\n\t the sum of three numbers are = %d",d);
return 0;
}
The Output
the sum of three numbers are = 9
give us your feedback
About 6 Players blogs
C++ Program that display your full Name enter by a user #include <iostream> using namespace std; int main() { char F_n...
No comments:
Post a Comment