- curl
- gnupg
- build-essential
- git
- sed
- tar
- curl
- gnupg
Import the mpapis Public Key through GPG (GNU Privacy Guard)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Instalar JDK 6 ou superior. JDK é o acronimo de Java Development Kit, ou seja, Kit de desenvolvimento Java. | |
# Contém o seu compilador "javac" e suas bibliotecas nativas. | |
# Instalando o JDK 7 no Ubuntu 13.10 (Saucy Salamander) ou superior | |
# Requiriments for 64 bits version | |
$ sudo dpkg --add-architecture i386 | |
$ sudo apt-get update | |
$ sudo apt-get install libncurses5:i386 libstdc++6:i386 zlib1g:i386 lib32ncurses5-dev lib32stdc++6 icedtea6-plugin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <cstdlib> | |
#include <iostream> | |
using namespace std; | |
int main(){ | |
FILE *pont_arq; | |
char palavra[20]; |