Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
71% Quality Score
Upvotes Received
5
Posts with Upvotes
2
Upvoting Members
4
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
~5K People Reached
Favorite Forums

23 Posted Topics

Member Avatar for jimmymack

Dev-C++ uses the MinGW compiler, which can compile both C and C++, so yes, you can program C with Dev-C++.

Member Avatar for TrustyTony
0
537
Member Avatar for tundra010

Hello! I have just started learning assembly language, and I have decided to use the NASM assembler. I made a small program, included below, that is supposed to take a number, add 5, and print out the final result. The program correctly prints the prompt, and takes a value, but …

Member Avatar for tundra010
0
244
Member Avatar for l1nuxuser

You need a database library I would recommend you look into sqlite, it is a great database library. Hope that helps! -tundra010

Member Avatar for Ancient Dragon
0
204
Member Avatar for Magekiller

First of all, change "public static computeAngleC()" to "public static double computeAngleC()" Next, change "int angle" to "double angle" That should fix the errors, then put the parameters through the functions and print the results. BTW, in the main method, you may want to change the int's to double's, so …

Member Avatar for Akill10
0
146
Member Avatar for Jaily

The reason why the loop will not end is because you have not decremented iResult, so when the computer executes "while (iResult > 0)", it will always evaluate to be true, and therefore keep on running.

Member Avatar for tundra010
0
108
Member Avatar for quickdeath

To make any type of graphics, you will need a graphics library. I recommend SFML (sfml-dev.org), as it is easy to learn and use, but there are many others as well, such as SDL. After you learn how to use the graphics library of your choice, you can write that …

Member Avatar for tundra010
0
53
Member Avatar for DragonMasterJay

Well, you could take a look at the source code of some open source antivirus software, such as ClamWin: [url]http://sourceforge.net/projects/clamwin/[/url]

Member Avatar for dannyfiker
0
339
Member Avatar for mehak gupta

Along with the system() function, you could also try to use the fork() and exec() methods, shown here: [url]http://www.yolinux.com/TUTORIALS/ForkExecProcesses.html[/url] For a GUI toolkit, the big ones are -Qt -GTK+ -WxWidgets There is also FLTK, which is a very powerful GUI toolkit, and it has a less steep learning curve than …

Member Avatar for mehak gupta
0
260
Member Avatar for algoexpert
Member Avatar for Nick Evan
0
74
Member Avatar for jackmaverick1

You could use the timer in Boost Libriaries: [url]http://www.boost.org/doc/libs/1_43_0/libs/timer/timer.htm[/url] hope that helps

Member Avatar for caut_baia
0
234
Member Avatar for yoni0505

Just add the include statement to the top of the source file, which will use the functions from windows.h : [CODE]#include <windows.h>[/CODE]

Member Avatar for yoni0505
0
959
Member Avatar for tundra010

Hello all As the title suggests, I have tried to write a sorting program in C++ The code compiles right, but does print the sorted numbers, but rather prints a list of zeros. I have tried to find the cause of this error for a while, but I can't seem …

Member Avatar for tundra010
0
203
Member Avatar for Haranadh

Well, you would need regular expressions. There is a regular expressions library in Boost, you can find it here: [url]http://www.boost.org/doc/libs/1_43_0/libs/regex/doc/html/index.html[/url] As for the regular expression itself, see the third post on this site: [url]http://stackoverflow.com/questions/53497/regular-expression-that-matches-valid-ipv6-addresses[/url]

Member Avatar for tundra010
0
362
Member Avatar for xxjay922xx

Here is how to fix your problem: 1) Go to [url]http://www.cplusplus.com/doc/tutorial/[/url] 2) Learn C++ 3) Do it yourself

Member Avatar for blackrainbowhun
-2
158
Member Avatar for tundra010

Just recently, I have upgraded from gcc 3 to gcc 4.5.0. However, when I try to compile a basic "hello world" example in c++, I get the following warning: Info: resolving std::cout by linking to __imp___ZSt4cout (auto-import) c:/mingw/bin/../lib/gcc/mingw32/4.5.0/../../../../mingw32/bin/ld.exe: warning: a uto-importing has been activated without --enable-auto-import specified on the c …

Member Avatar for tundra010
0
130
Member Avatar for tundra010

Hello everyone! I wrote a basic c++ program using classes and pointers. Although it compiles without any errors, it will not run, saying "This program has stopped working". I am assuming that this issue may have been created by a memory leak, but I made sure to delete all dynamically …

Member Avatar for thelamb
0
113
Member Avatar for literal

I think you are confused. C++ is the language, whereas Visual C++ is an ide and compiler suite created by Microsoft, which helps with programming in C++

Member Avatar for alaukik
0
263
Member Avatar for Confu

Depends on your compiler/ide If you are using VC++, go to Project > Properties > Config Properties > Linker. Add libboost_thread-vc90-mt-gd-1_43.lib to the Additional Dependencies list Make sure that you include the directory path, too The same is true for most other ide's, just go to linker settings, and add …

Member Avatar for tundra010
0
90
Member Avatar for tundra010

Hello everyone I know that one cannot pass a parameter to destructor functions in classes. Is there a reason why this functionality was left out of c++, and is there a way to get around it? Thanks!

Member Avatar for tundra010
0
107
Member Avatar for waldchr

[url]http://doc.trolltech.com/4.5/dnd.html[/url] [url]http://sector.ynet.sk/qt4-tutorial/dnd.html[/url] [url]http://www.handhelds.org/~zecke/apidocs/qt/dnd.html[/url]

Member Avatar for waldchr
0
136
Member Avatar for davebaum1

here's a website that helped me a lot learning c++(and I'm still learning!): [URL="http://www.cplusplus.com/doc/tutorial/"]http://www.cplusplus.com/doc/tutorial/[/URL]

Member Avatar for tundra010
0
169
Member Avatar for nathan1111

I would recommend the 940, because it is already faster than the 920 and you can overclock the 940 to even faster. Also, you are getting the 940 for a way cheaper than usual price, and that's hard to come by.

Member Avatar for tundra010
0
89
Member Avatar for tundra010

Hi I have Microsoft Visual C++ 2008 Express Edition and I downloaded fltk from fltk.org. When I tried compiling it, i got many of these errors: LINK : fatal error LNK1181: cannot open input file 'fltk.lib' How do i compile FLTK now? Please help

Member Avatar for tundra010
0
272

The End.