# 20230308: Primeros pasos con C

c windows

# Primeros pasos con C en Windows

# Hello World

#include <stdio.h>

int main(int argc, char** argv) {
    printf("Hello, World!");
    puts("Hello, World!");
    return 0;
}
  • gcc -std=c99 helloworld.c -o helloworld.exe
  • helloworld

# Primeros pasos con C en Linux

  • sudo apt-get install build-essential
  • gcc --version

# Hello World

#include <stdio.h>

int main(int argc, char** argv) {
    printf("Hello, World!");
    puts("Hello, World!");
    return 0;
}
  • gcc -std=c99 helloworld.c -o helloworld
  • ./helloworld
Última versión: 4/13/2024, 4:27:12 AM