Program of sum of 2 integer number | 2nd Program of C tutorial | Program of input integer | dot clu
About C language:
C is used a lot in embedded hardware programming where resources are scarce. Linux kernel is written in C because, according to Linus Torvalds, C++ is a horrible language.
SOURCE CODE:
#include<stdio.h>
int main()
{
int first,second,sum;
printf("Enter two integer to add\n");
scanf("%d%d",&first,&second);
sum= first + second;
/*Adding contents of first and second storing in sum */
printf("sum of Entered numbers= %d\n",sum);
return 0;
}
Watch Video
--------------------------------------------- LIKE SHARE SUBSCRIBE
-------------------------------------------- I Hope you like Our Video.. dotclu dot clu =====Also Watch Our other Video=======
Get started With C || First Program in C || C tutorial || Hello world program in C || dot clu
link: https://youtu.be/Oqyoe1nJNjE
Install Virtual BOX in your PC | create Virtual Machine | downloading link in description || dot clu
link:https://youtu.be/x9ijUzOUyiY
How to Install Hyper V in windows 7?
link: https://youtu.be/Y64Dr3YNCSw
What is Bitcoin? || Earn Bitcoin money with your Android phone || 100% working || dot clu || Hindi
link: https://youtu.be/HYQgDQrSC1
===== Also JOin Us on========
twitter: https://twitter.com/dotclu
blogger: http://dotclu.blogspot.com
Comments
Post a Comment