9 lines
89 B
C
9 lines
89 B
C
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
|
|
int main() {
|
|
|
|
int var = 5;
|
|
printf("%d", var);
|
|
|
|
}
|