Addition of two numbers


Harsh2022/11/12 02:23
フォロー

C and c++ programming next article on c++ program

#include<stdio.h> Void main () { int num1,num2,ans; printf("\n Enter the first number"); scanf("%d",&num1);

printf("\n Enter the second number");

scanf("%d",&num2);

ans=num1+num2;

printf("\n Addition of the two numbers is %d",ans);


}

シェア - Addition of two numbers

Harshさんをフォローして最新の投稿をチェックしよう!

フォロー

1 件のコメント