Isto irá apagar a página "c"
. Por favor, certifique-se.
C is a low-level compiled programming language that can be considered a step up from assembly. It is pretty fast and programs written in C can be compiled to many different platforms, making it portable if done correctly.
There are many different C compilers such as GCC, clang, tcc and many more.
There is a C tutorial at LRS wiki! ( https://www.tastyfish.cz/lrs/c_tutorial.html )
Hello World in C
#include <stdio.h>
int main(void)
{
puts("Hello World!");
return 0;
}
int32_t x = 30000u + 30000u;
Isto irá apagar a página "c"
. Por favor, certifique-se.