15 lines
214 B
C
15 lines
214 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
int main(void);
|
|
|
|
|
|
int main(void) {
|
|
int x = 5;
|
|
float y = 10.500000;
|
|
bool z = true;
|
|
char* s = "hello";
|
|
return x;
|
|
}
|
|
|