Select Git revision
string-ops-08.c
Forked from
Peter Gerwinski / hp
Source project has a limited visibility.
calc-01.c 121 B
#include <stdio.h>
int main (void)
{
int a = 3;
int b = 7;
int c = a + b;
printf ("c = %d\n", c);
return 0;
}