Link to home
Start Free TrialLog in
Avatar of shahrine99
shahrine99

asked on

c++

Hi..is there any program online for scribbling in c++? i am looking for something like the paint program..where we can draw pictures ...change colors...i have a program in java..but i am looking for something in c++
Avatar of jkr
jkr
Flag of Germany image

See e.g. MS' 'Scribble' sample at

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vctutor98/HTML/_gs_scribble_tutorial.asp ("Scribble Tutorial ")

or

http://msdn2.microsoft.com/en-us/library/f35t8fts(VS.80).aspx ("SCRIBBLE Sample: MFC MDI Drawing Application  ")
ASKER CERTIFIED SOLUTION
Avatar of jkr
jkr
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of shahrine99
shahrine99

ASKER

on this website http://doc.trolltech.com/3.1/scribble-example.html ("Simple Painting Application")
there are 3 sections: header, main, and implementation..i am using ssh shell client server call QUBIT...so which part i need to run to see the output? the implementation part? i am using windows
These threee files will be compiled into a single executable which you then can run. Remember, C++ is not an interpreted language.
wat u mean it is not an interpreted language?
In C++, a compiler parses the input files (here: header, main, and implementation) and generates machine code that is linked into a single binary image as the output, that is the file that is run on the target computers. The source files are merely a description how these are built. In interpreted languages, e.g. a shell script, every line is parsed an executed each time the file is run.
got it thanks!