CAP/TP01/riscv/ex1.c

13 lines
142 B
C
Raw Normal View History

2024-09-12 10:02:16 +02:00
/*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;
}