Skip to content

Commit

Permalink
Commit Inicial P3
Browse files Browse the repository at this point in the history
  • Loading branch information
TeenBiscuits committed Oct 24, 2024
1 parent 65d9add commit bfdcaa1
Show file tree
Hide file tree
Showing 12 changed files with 19,703 additions and 0 deletions.
1 change: 1 addition & 0 deletions P3/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tiempos.txt
8 changes: 8 additions & 0 deletions P3/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions P3/.idea/P3.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

580 changes: 580 additions & 0 deletions P3/.idea/editor.xml

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions P3/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions P3/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions P3/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions P3/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.22)
project(P3 C)

set(CMAKE_C_STANDARD 99)

add_executable(P3 main.c)
10 changes: 10 additions & 0 deletions P3/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
all: main.out
#rm tiempos.txt
./main.out
#cat tiempos.txt

main.out: main.c
gcc -Wall -o main.out main.c -lm

clean:
rm -f *.out tiempos.txt
Binary file added P3/PDFs/p3.pdf
Binary file not shown.
6 changes: 6 additions & 0 deletions P3/main.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <stdio.h>

int main(void) {
printf("Hello, World!\n");
return 0;
}
19,062 changes: 19,062 additions & 0 deletions P3/sinonimos.txt

Large diffs are not rendered by default.

0 comments on commit bfdcaa1

Please sign in to comment.