Visual C++ 2010 problem |
I have installed Microsoft Visual C++ 2010 Express in my PC. When I execute the following code: #i... |
Mar 30, 2013 at 5:06pm
[1 reply] : Either disable incremental linking, by going to Project Properties ... (by luigibana96)
|
I don't understand why it gives me wrong answers? |
I'm going through the basics right now and reading books to seriously get into c++. But I don't und... |
Mar 30, 2013 at 4:35pm
[2 replies] Last: thank you smart sir. (by MentalStrength)
|
Errors using lists |
Object.cpp #include "Object.h" Object::Object(Object& copy){ id = copy.getID(); name = copy.get... |
Mar 30, 2013 at 4:30pm
[5 replies] Last: Ah... I see the problem there, thanks for that. (by TheBeardedQuack)
|
by arashf
variable-sized object `val' may not be initialized
|
I have problem compiling the following code: class sample { public: static const unsigned... |
Mar 30, 2013 at 4:09pm
[4 replies] Last: Indeed, vlad. I saw that in the last moment. (by Catfish3)
|
by Fauch911
prime numbers problem
|
Hi, I've been given this task: Design a program tat finds all numbers from 1 to 100 whose prim... |
Mar 30, 2013 at 4:03pm
[9 replies] Last: my code simply does the following: 1. finds a prime factor of the numb... (by abhishekm71)
|
by poziga
bubble sort
|
Hello I have a question where do I have to put printf and what should I print in buble sort. I have ... |
Mar 30, 2013 at 3:36pm
[3 replies] Last: Try this: #include<iostream> using namespace std; int main() { i... (by The illusionist mirage)
|
Removing duplicates from a vector |
I am trying to create a program that will remove all duplicated from an array. Example, if the inpu... |
Mar 30, 2013 at 3:23pm
[7 replies] Last: @vlad from moscow you were right. I messed up with some build prefer... (by The illusionist mirage)
|
by muddaser
win32 console appplication
|
how to make a programm which take small letters in input and show out put in capital letters?????? |
Mar 30, 2013 at 3:01pm
[2 replies] Last: search toupper on this forum page (by chipp)
|
by odai
need some help here
|
AddStudent: add a student to the array of students to a specified location in this array (i.e. tak... |
Mar 30, 2013 at 2:50pm
[1 reply] : As far as I know, you cannot change an array size at runtime. I think ... (by Brainstormer)
|
Application Opening and Closeing? |
How can I make a application make by me run a tid-bit of code when another application is opened? A... |
Mar 30, 2013 at 2:08pm
[3 replies] Last: Maybe I have not understood your question.:) (by vlad from moscow)
|
by Precious roy
Weird error implementing a interface
|
hi i'm trying to implement a interface in c++ using visual studio 2012. but i'm getting a weird err... |
Mar 30, 2013 at 1:38pm
[4 replies] Last: hmm ok thanks. at least i can continue. thumbs up for your help :} (by Precious roy)
|
by yuval112
help with random generator at matrix
|
Hello, I created a class that has the private ** matrix, coordinates of rows and columns. I also cr... |
Mar 30, 2013 at 1:30pm
[9 replies] Last: But your assertion check comes a little bit too late. Should be done ... (by tcs)
|
by ZeinH
Check for Updates?
|
Im About to Publish My First Visual 2012 Application.. But I Just Realized theres a Self Update..... |
Mar 30, 2013 at 11:39am
[no replies]
|
by Varius
Relatively New Programmer
|
Hello everyone, I go by Varius and I'm a fairly new programmer. I started about a month ago and I'm ... |
Mar 30, 2013 at 11:36am
[2 replies] Last: Haha thanks! I've been working on this all night and I'm finally about... (by Varius)
|
by estomagordo
Troubles implementing iterator as nested class in linked list
|
Hi all, I have a template class, LinkedList, that I want to develop an iterator for. I have defined... |
Mar 30, 2013 at 11:24am
[2 replies] Last: Thanks! I changed the scope declarations and now I don't get errors. ... (by estomagordo)
|
by Varius
Program Crash
|
I wrote a program to factor trinomials in the format "x^2 + bx + c" to "(x + a)(x + y) but it crashe... |
Mar 30, 2013 at 11:15am
[6 replies] Last: I really appreciate the help here :) Thank you (by Varius)
|
Am I able to be a c++ programmer by self-study? |
Hi Dears, I am a student of B.A.Hon's in English. How can I be an expert and get all things related... |
Mar 30, 2013 at 11:07am
[1 reply] : Well, really It all depends on how much you like to learn. I suggest l... (by closed account ozUkoG1T)
|
by cyberdude
how to create dll files with C++
|
HELLO ALL, Can some one tell me if it is possible to make a .dll file with c++. It should be writte... |
Mar 30, 2013 at 10:55am
[1 reply] : For gcc http://stackoverflow.com/questions/847396/compile-a-dll-in-c-c... (by MiiNiPaa)
|
Need an algorithm |
I need to figure out an algorithm for a program which does the following:- if you enter 3 digits ... |
Mar 30, 2013 at 10:31am
[4 replies] Last: In hindsight my question didn't make much sense in the first place. (by Varius)
|
by Man silence
how can order by asc salary in c++
|
How can I arrange Salaries Ascending The show salaries after tax To be applied with the struct anyo... |
Mar 30, 2013 at 7:19am
[8 replies] Last: ya i will try I will try to understand Thank you a lot (by Man silence)
|