![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 |
|
Newbie
Join Date: Mar 2005
Posts: 1
Rep Power: 0
![]() |
Text editor source code...
can someone post the source code to the windows notepad, or another similairly simple one. as i have been trying to learn c++ for a while now but to no success. so i thought id start with just cannabilising a simple programs source code, by changing colors and the like - just to get myself comfortable with c++
|
|
|
|
|
|
#2 |
|
Programming Guru
![]() |
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;
}
__________________
|
|
|
|
|
|
#3 |
|
PFO Founder
![]() ![]() |
http://www.programmersheaven.com/
go to programmers heaven and look at some of the projects people have put on that site. they give full source code and all it should help you ![]()
__________________
BIG K aka Kyle Programming Forums Kyle K Online Please do not PM or email me programming questions. Post them in the forums instead. |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|