All major conceptual S2 C-Programs with Algorithms
View the Project on GitHub trulyPranav/S2-C-Programs
#include <stdio.h> void main(){ int a,b,sum; printf("Enter the two numbers"); scanf("%d %d", &a, &b); sum = a + b; printf("The sum of the two numbers is %d:", sum); }