- Get link
- X
- Other Apps
Writing a programs in C languages Here in this blog you will see the basic program of C programming languages in below so follow your blogger website and see more interesting topics 1. Adding of two number in c programming language In this program we give you knowledge about basic program of addition of two number in C languages and how to write a program in Ide like VS code etc / /Adding two number #include<stdio.h> int main() { int a,b,c; printf("Enter the value of a ="); scanf("%d",&a ); printf("Enter the value of b ="); scanf("%d",&b ); printf( "Addition of Two Number\n" ); c=a+b; printf("Addition = %d\n\n ",c); return 0; } output - Enter the value of a =12 Enter the value of b =12 Addition of Two Number Addition = 24 2. Subtraction of two number in c programming language In this program we ...