
please wait
by mattwilliams
Slide Sorter Program
|
Hey everybody! I really need some help with a code I have no idea on how to even start. It is supposed to be able to accept the plays choice for a move, check t... |
May 27, 2015 at 12:50am
[no replies]
|
by anirudhna
how does the '%' operator work
|
What is the calculation behind the '%' operator in c++ ? I understand that it gives the remainder of a division of 'a' by 'b' in 'a%b'. It also yields 20 ... |
May 26, 2015 at 11:44pm
[2 replies] Last: for integers n, q , p and r; n = q*p +r where r is always less than t... (by erbisme4)
|
by Osej Alhasad
Vectors in .txt files
|
How can I write a vector inside a .txt file? |
May 26, 2015 at 11:41pm
[15 replies] Last: Ok, thanks (by Osej Alhasad)
|
by Freaky256
Generate all subsequence combinations
|
I need all combinations of subsets of a string. In addition, a subset of length 1 can only be followed by a subset with length > 1. E.g. for string 4824 the res... |
May 26, 2015 at 6:20pm
[1 reply] : You might want to start here: http://stackoverflow.com/questions/90591... (by cire)
|
by marshallII
reduce Knpasack problem to 3SAT problem
|
hello guys, i'm searching for the reduction of knapsack problem to 3SAT need just an idea how to do it . thank you ! |
May 26, 2015 at 2:05pm
[1 reply] : There is no generalized answer to a question like this. Can you give u... (by Duthomhas)
|
by DuyTran
Basic linked list errors
|
I am working on basic linked list and I have just writen a program on Adding and multiplying polynomials. Unfortunately, I there's some problem with the memory.... |
May 26, 2015 at 7:03am
[3 replies] Last: As to the design: redesign. (This is not strictly necessary. You can... (by cire)
|
Maximum number of indexes for N-dimensional array? |
Hello, I am trying to find the maximum value I can put for each dimension in a 2D array, but trying obvious things like USHRT_MAX (since that's the max for a... |
May 25, 2015 at 5:06pm
[2 replies] Last: I am trying to find the maximum value I can put for each dimension in... (by andywestken)
|
by bali971
Need a solution for c# code
|
Hey!! I have some exception in my c# project can anyone please help me ? using System; using System.Collections.Generic; using System.Linq; using System.Text; ... |
May 25, 2015 at 1:51pm
[6 replies] Last: This topic is continued in this thread: http://www.cplusplus.com/forum... (by Gamer2015)
|
by bali971
need solution for this
|
Hey!! I have some exception in my c# project can anyone please help me ? using System; using System.Collections.Generic; using System.Linq; using System.Te... |
May 25, 2015 at 1:48pm
[6 replies] Last: Gamer3015, that is a class C, local ip. Whooops should've known that... (by Gamer2015)
|
by Vangy
Future of C++
|
What do you guys think, is learning c++ worth it ? |
May 25, 2015 at 1:44pm
[9 replies] Last: Making gui development on Windows with .net languages is extremely ea... (by Gamer2015)
|
by Ophi
SFML Link Error
|
Hello. I'm just starting to learn the SFML library for use in C++ in VSE 12. /* Main.cpp */ #include "Header.h" int main(void){ sf::Window window; window.... |
May 25, 2015 at 1:05pm
[9 replies] Last: I was pointed in the correct direction on the SFML forums. Apparently ... (by Ophi)
|
by rizaado
Different libraries
|
(1)What is the difference between dynamic link library, shared library and static library? (2)And what is the difference between source files and header files... |
May 25, 2015 at 1:01pm
[6 replies] Last: Thank you. (by rizaado)
|
by itsallpoison
cin not working
|
Hey guys. I've got this code: if (izbor==2) { fstream clientFile("clientFile.txt",ios::app); cout<<"Na koi klient jelaete da promenite adresa?"; ... |
May 25, 2015 at 10:09am
[5 replies] Last: Thank you. Really cleared up things for me. (by itsallpoison)
|
by Abrar Iqbal
Computer Graphics
|
Greetings every one. i am puzzled on the source code. Can you please tell me how to move my circle in proram? I can't understand which function i should use.... |
May 25, 2015 at 8:20am
[1 reply] : What source code are you talking about? (by Peter87)
|
by Suppresed
Getting -9.25596e+061 passing paremeters inheritance
|
I've been struggling a heck of a lot with this bug I just don't know how to fix. I've got two classes, one inheriting from the other. I pass parameters from th... |
May 25, 2015 at 7:11am
[11 replies] Last: But in your original code you are never computing the area, only ge... (by Peter87)
|
What does a return 0 do? |
I just know return 0 can exit the program in main function. but how about in other member function? Is it just kill the member function, or it kill the whol... |
May 25, 2015 at 6:09am
[6 replies] Last: Every function returns to its point of call when it finishes its work.... (by PSYCHAMERON)
|
by jae0014
Please can anyone help me on strlen, strcmp , strcpy, strcat...
|
I Edited my question 1. This is what i have and one below is testing code int mystrlen(const char *s) { int x=0; for (int i = 0; i < 100; i++) { if (s... |
May 25, 2015 at 1:30am
[5 replies] Last: Haha,, if i get it would I even post this in the first place? (by jae0014)
|
by coder35
URGENT!! Need help finishing 2-dim array game code!
|
So I have the basic structure of the code down, but I don't know how to finish the code to display my string of words on the grid or how to set a time limit for... |
May 25, 2015 at 12:03am
[5 replies] Last: states is a 1-Dimensional array. string states = {...}; but you tr... (by Gamer2015)
|
by mjamesball9
Logic Issue
|
Hello this is a program to help kids with math, it is really basic. I am having issues with the logic from line 78 to line 86. Please help me out! :D I use... |
May 24, 2015 at 10:19pm
[6 replies] Last: glad to help What do u mean by "yes"==true? This was actually wron... (by Gamer2015)
|
by mamz931
help with this c++ code mat lib
|
Please Help In This code #include <iostream> using namespace std; class mat{ double **data; int r,c,a,k,j,t; public: mat(){ r... |
May 24, 2015 at 10:06pm
[3 replies] Last: These are easy: - daata does not exist: data=x.daata ; - in main:... (by Gamer2015)
|