CAP/TP01/riscv/ex1.c
Emma Nardino 1f64bd761c Add TP01
2024-09-12 10:02:16 +02:00

13 lines
142 B
C

/*Source code from Laure Gonnord, CAP Lab 1*/
#include <stdio.h>
int main(){
int x = 41;
x = x+1;
printf("%d\n",x);
return 0;
}