Untitled
unknown
plain_text
a month ago
231 B
2
Indexable
Never
#include<stdio.h> void main() { int a,b; printf("Enter First Digit : \n"); scanf("%d",&a); printf("Enter Second Digit : \n"); scanf("%d",&b); printf("Addition of %d & %d : %d ",a,b,a+b); }
Leave a Comment