bsc

Comprehensive codebase and cou...
Log | Files | Refs | Activity | README | LICENSE

root / semester_1 / tuition-c / P003.c

P003.c (333B)


      1 //WAP to perform addtion and multiplication of two integer numbers
      2 
      3 #include<stdio.h>
      4 int main() {
      5 	int a, b, sum, multi;
      6 	printf("Enter the 1st number : ");
      7 	scanf("%d",&a);
      8 	printf("Enter the 2nd number : ");
      9 	scanf("%d",&b);
     10 	sum = a + b;
     11 	multi = a * b;
     12 	printf("\nSum = %d"
     13 		   "\nMultiplication = %d",sum,multi);
     14 	return 0;
     15 }
© notamitgamer • Site Built: 2026-09-05 01:53:16 UTC • git-mirror commit: c170d72 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror