Skip to content

Redes de Computadores (DCC023) - Trabalhos Práticos (UFMG)

License

Notifications You must be signed in to change notification settings

urbanogilson/Redes-de-Computadores

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Redes de Computadores License: MIT

Redes de Computadores - Trabalhos Práticos (UFMG)

Quickstart

Example

Code

// code.c
#include <stdio.h>
int main()
{
  printf("Hello World!\n");
  return 0;
}

Makefile

# Makefile
all: hello
hello: code.o
  gcc code.o -o hello
code.o:
  gcc -c -Wall -Wextra -Werror -std=c99 -pedantic -g code.c
clean:
  rm -rf *o hello

Compile

$ make

Run

$ ./hello
Hello World!

License

The contents of this repository are covered under the MIT License.

About

Redes de Computadores (DCC023) - Trabalhos Práticos (UFMG)

Topics

Resources

License

Stars

Watchers

Forks