by Mohamed 2013
arrays
|
how to make a variable that take subset from another variable which is an array ? |
Jun 2, 2013 at 4:02pm
[3 replies] Last: int a = {1, 2}; int b = a ; ; (by pogrady)
|
by eyali
re-allocate array with in function
|
Hi All, I use visual studio 2010 for my c++ programming. I want to change/re allocate given a... |
Jun 2, 2013 at 3:51pm
[5 replies] Last: > how array is not pointer?? Arrays are not pointers. An array can be... (by JLBorges)
|
by jvk971
Problems with reading and wirting files!
|
Hi. Im learning about how to read and write to files. Im basically just copying what this guy does: ... |
Jun 2, 2013 at 3:32pm
[2 replies] Last: hehe:) thanks (by jvk971)
|
by banowati
Need Help, Bubblesort in pointer
|
I have assignment to complete the following coding. My lecturer only give the number of rows and the... |
Jun 2, 2013 at 3:24pm
[3 replies] Last: That does give the impression that the main() should allocate memory d... (by keskiverto)
|
by Olysold
Custom shared_ptr
|
I'm trying to write my own version of shared_ptr and I just don't get what this error is about. Sha... |
Jun 2, 2013 at 1:01pm
[10 replies] Last: Okay I'll add them in. The assignment operator is already redefined to... (by Olysold)
|
by beginplus2
Howto public struct
|
Hello, I am trying to get public struct to whole project which data should be accessed from everywhe... |
Jun 2, 2013 at 9:50am
[16 replies] Last: Finally catch what vlad was mean: common.h #ifndef COMMON_H_ #defi... (by beginplus2)
|
by hamshid
static variables
|
void func1(int i){ static int staticInt = i; cout << staticInt << endl; } int main(){ func1(... |
Jun 2, 2013 at 8:56am
[3 replies] Last: please use code tags: http://v2.cplusplus.com/articles/jEywvCM9/ ... (by Rechard3)
|
by Lim Boon Jye
Just a function declaration
|
Just wanna ask what kind of the coding should implement in this function /* * File: Bitma... |
Jun 2, 2013 at 8:29am
[1 reply] : i'm sorry, i think your question is really unclear, is that only me, o... (by Rechard3)
|
by Olysold
Specifying template function to take containers.
|
Just came across this and am not very sure how it works, some help clarifying things would be great.... |
Jun 2, 2013 at 5:31am
[8 replies] Last: Awesome. Thank you JLBorges for helping me out again. (by Olysold)
|
by bacondude95
Compiler issues
|
When I build a simple console application using codeBlocks and compile it I get this issue: -----... |
Jun 2, 2013 at 4:22am
[1 reply] : try saving the entire project to one location like D drive then run it... (by sakonpure6)
|
by konovoloff
How to read a list of data from a text file?
|
So right now Im trying to read data in from a text file. I got a text file that basically looks like... |
Jun 2, 2013 at 12:35am
[4 replies] Last: You might also want to invest into structures. #include <iostream> ... (by giblit)
|
by Fourc00h
TicTacToe - 2D Array - Linear Search (1,2)
|
Hello, I'm having a little problem with completing this little TicTacToe program using a 2D array, i... |
Jun 1, 2013 at 9:35pm
[31 replies] Last: Cool man, I was able to use this in my connect 4 game as well. Really ... (by Fourc00h)
|
by Ramzi89
Reading files
|
Hi Can you use the cin function on a string variable? I am trying to read input from a file li... |
Jun 1, 2013 at 9:29pm
[7 replies] Last: That's right. A stringsteam behaves in many ways just like a disk file... (by Chervil)
|
by NineTails
Help with some maths
|
Im pretty new to c++ programming and my maths is really rusty. What I'm trying to do is the followin... |
Jun 1, 2013 at 9:25pm
[3 replies] Last: The last if will never call, because you're using direct comparison wi... (by Ispil)
|
by donvigor
char array task...where am i going wrong?
|
Write your question here. : hello everybody...just finished this exercise...but for some reason some... |
Jun 1, 2013 at 9:22pm
[1 reply] : cin does not keep track of spaces. Use getline instead. Also, use stri... (by Ispil)
|
by R10111001
Unexpected destructor call
|
I am trying to get a handle on working with classes and wrote a simple class that is used to store a... |
Jun 1, 2013 at 8:49pm
[2 replies] Last: Thank you for your quick reply. You are right, if I declare the constr... (by R10111001)
|
by Anonimni
std::cin and std::cout isn't working
|
Hello all the std::cin and std::cout aren't working for me correctly :( #include <iostream>... |
Jun 1, 2013 at 8:17pm
[11 replies] Last: thanx, now working :) (by Anonimni)
|
Help me understanding logical operator well |
I've just created a c++ program that computes the sum of the cubes from 5^3 to N^3 and after the fol... |
Jun 1, 2013 at 8:15pm
[4 replies] Last: thanks for helping me (by jasonrobertz357)
|
by daft science
Writing a function with pointers and arrays
|
I need to write a function named " void reverse(double* a, int size) " to reverse the number in an a... |
Jun 1, 2013 at 8:00pm
[11 replies] Last: Awesome!! Thanks so much for showing me how to do that. :) Here's my ... (by daft science)
|
by ThacZero
Data to Parallel Arrays
|
Hello everyone, first time poster, hoping someone can help me out. I am trying to read in data from... |
Jun 1, 2013 at 7:51pm
[no replies]
|