Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
/*
Program Name: Simple Addition
Description: Adds two integers
Author: Student
*/
int main() {
int a = 5, b = 7;
int sum = a + b;
printf("Sum = %d\n", sum);
return 0;
}Coding works best on desktop or with an external keyboard.