Skip to main content

Posts

Showing posts from 2021

2. Addition of two numbers with three Integers

 Hey Folks,   Today, I'm going to share an addition of two number with three integers, we have two integer addition and three integer addition. Today we are going to know the program of three integer addition in different methods. Method I:  #include<stdio.h> #include<conio.h> main() { int a,b,c; printf("Enter First Number:"); scanf("%d",&a); printf("Enter Second Number:"); scanf("%d",&b); c=a + b; printf("Addition of two numbers: %d",c); getch(); } Method II: #include<stdio.h> #include<conio.h> main() { int a,b,c; printf("Enter Numbers to add: "); scanf("%d%d",&a,&b); c = a+b; printf("Addition of two number is: %d",c); Thank you.

1. Hello World Program

 Hello everyone, I hope you all are good and feel programee. first, I want to thanks to visiting here, This is my first blog on C-Programming and I post a lot of program in future too. if it helps to one kinda I feel very happy. C-Language is very easy and basic level language and easy to understand. I know you can't wait for more to see hello world program here it is" Program:  #include<stdio.h> main() { printf("Hello World!"); getch(); } Thank you. Visit: santoshkumarjinde.website