View Single Post
Old Mar 9th, 2005, 2:50 PM   #2
tempest
Programming Guru
 
tempest's Avatar
 
Join Date: Oct 2004
Posts: 1,041
Rep Power: 6 tempest is on a distinguished road
Send a message via ICQ to tempest Send a message via AIM to tempest Send a message via Yahoo to tempest
Windows notepad is actually a very complicated program, if you want simple windows programming try learning VB. Here is a simple C++ program...

#include <iostream>

int main(int argc, char *argv[]) {
    char msg[] = "Hello, world!";
    int msgLen = strlen(msg);

    std::cout << msg << std::endl;
    std::cout << "(is) " << msgLen << " characters in length." << std::endl;

    return 0;
}
__________________

tempest is offline   Reply With Quote