Saturday, January 10, 2015

Learn how can you sum two numbers on C with an extra easy video guide

CODE

--Copy from the line below--

#include <stdio.h>

main()  
{
int number1 = 10;   
int number2 = 20;
int sum;       
sum = number1 + number2;  
printf("The Sumary of Number1 %d with number2 %d is the following %d", number1, number2, sum);
scanf("%d", &sum);
}
--Until the line above --

No comments:

Post a Comment