programing language software which rus in vista n w7?

Status
Not open for further replies.

toqeer

Broken In
i want to know some c and c++ language software which runs in
1-vista or
2-window7

pls this property must be in software that it looks comfertable to use means like turbo c in xp .i also tried turboo c++ in vista but its letters r too small n also looks bad.
 

Liverpool_fan

Sami Hyypiä, LFC legend
Geany + Mingw
Codeblocks + Mingw

*www.geany.org/Support/RunningOnWindows
*www.mingw.org/
*www.codeblocks.org/

Best of Luck and yes...if you use Geany then, set the build settings. (Build->Set Includes and Arguments

Compile: g++ -c -Wall "%f"
Build: g++ -Wall "%f" -o "%e.exe""
Execute: "./%e"

Good Luck.

I know off topic but neverthless:
Also keep in mind since you will transition from tc to gcc:
(1) Don't use clrscr()
(2) Use int main instead of void main. and Don't forget to return 0; :D
(3) Also when you have to use gets(buffer), don't use it. Use fgets() instead.
gets() will compile w/o errors alright, but it a warning would be generated, and rightly so.

Code:
fgets(buffer, sizeof(buffer), stdin);
char *newline = strchr(buffer, '\n' );
if (newline) *newline = '\0';

(But write gets() in paper exam)
 
Last edited:
Status
Not open for further replies.
Top Bottom