This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/Exercises/C4/simple_claculation.c

8 lines
176 B
C
Raw Normal View History

2022-04-08 15:12:38 +00:00
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int a = 6,b = 7,c; // Declare and initialiase as required
c = a + b; // Add the values and store in c
}