Results 1 to 3 of 3
  1. #1
    sasammyzyn
    sasammyzyn is offline
    New member sasammyzyn's Avatar
    Join Date
    2012 Mar
    Posts
    7
    Thanks Thanks Given 
    7
    Thanks Thanks Received 
    13
    Thanked in
    4 Posts
    Rep Power
    0

    Wink Tutorial Iniciante Visual c++

    Aqui mostrarei como usar basicamente o compilador Visual c++ 2008.
    Abrindo o Visual c++, teremos a secao file em cima. Entao escolhemos New -> Project.







    Depois disso, na aba project, selecionamos win32 console application. Usarei Console applications porque sao muito mais simples do que janelas.






    Depois disso, pressione next -> Empty Project
    Entao seu projeto sera criado, mas depois voce tera que criar um arquivo em c++ para ele desse modo:






    Uma aba ira se abrir, e escolha c++ file(cpp) e de um nome ao arquivo.
    A tela principal do Visual c++ ficara branca, e la voce podera escrever seu codigo.
    Agora escreva um programa simples para testa-lo:
    #include <iostream>
    using namespace std;
    int main()
    {
    cout << "Using Visual C++ \n";
    system("PAUSE");
    return EXIT_SUCCESS;
    }

    Agora basta compila-lo, o que pode ser feito com a tecla f7. Depois de compila-lo execute-o com a tecla f5. Simples nao e?

  2. #2
    filipewyd
    filipewyd is offline
    Member-in-training filipewyd's Avatar
    Join Date
    2011 Oct
    Location
    Brasil
    Posts
    170
    Thanks Thanks Given 
    93
    Thanks Thanks Received 
    129
    Thanked in
    71 Posts
    Rep Power
    0
    what this works, what i used this in aika ?
    sorry my english ):

  3. #3
    leeonardo
    leeonardo is offline
    Moderator leeonardo's Avatar
    Join Date
    2012 Jan
    Location
    Here I am.
    Posts
    2,219
    Thanks Thanks Given 
    48
    Thanks Thanks Received 
    3,122
    Thanked in
    737 Posts
    Rep Power
    15
    Wrong section, should be posted on C++ / C#
    And it's pretty clear a specific area for this type of topic C + + / C #.

    Quote Originally Posted by filipewyd View Post
    what this works, what i used this in aika ?
    Is that because the part of Aika be seen more in the forum, many feel that they should post in this area.


    É pra ficar com medo?



    Apenas observo...



    Não faço nenhum tipo de venda de hack no jogo, então se in game ver algum "Leonardo PGC" não acredite, pois será alguém tentando te roubar.

Similar Threads

  1. [VB] Basic hack and trainer with CE and Visual Basic
    By Dwar in forum Programming Tutorials
    Replies: 2
    Last Post: 2013-05-01, 03:57 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •