by GOct
Flattening a 2D array efficiently
|
|
[2 replies] Last: I'll just leave this here.. http://www.cplusplus.com/forum/articles/1... (by hamsterman)
|
by priteshinc
Newbie program creation - chocolate sales
|
|
[1 reply] : #include <iostream> int main(){ //your homework goes here ... (by hamsterman)
|
by josemartinez
Type Conversion Suffixes
|
|
[1 reply] : f or F =>float l or L =>long double or long (depending on context) u... (by chingi3)
|
by makavelix02
Sorting Class String Array
|
|
[2 replies] Last: I think you should begin your main loop from 1 not from 0 for (int ... (by chingi3)
|
by claudiordgz
♪ c++ program crashing down crashing down ♪
|
|
[4 replies] Last: I dropped the loop and used this instead for( int i=0; i<x; i++ ) ... (by claudiordgz)
|
by rkdjr1234
need ideas
|
|
[2 replies] Last: well ive gone over tutorials on creating a window and i think im confi... (by rkdjr1234)
|
by toktam
access file system in fat32
|
|
[no replies]
|
by Dark Byte
Why use typedef struct instead of simply struct
|
|
[2 replies] Last: +1 Zhuge. The typedef thing is a weird C thing. You don't have to ... (by Disch)
|
by ricomoss
Call Script From C++
|
|
[5 replies] Last: system command only works if your C++ program don't intend to receive ... (by sohguanh)
|
by talt1
Displaying Arrays using pointers instead of subscripts
|
|
[3 replies] Last: int a = {1,2,3}; for(int i=0; i<3; i++) cout << *(a+i) << "... (by sohguanh)
|
by bobmarley
prime factors of a number
|
|
[1 reply] : you don't use the dividers array anywhere. it should be for(int i = 0;... (by hamsterman)
|
by Taggize
String Coding
|
|
[no replies]
|
by firix
Which books should I read?
|
|
[5 replies] Last: Hello Guys, Please write about this book... (by firix)
|
decimal to binary |
|
[3 replies] Last: Hello jsmith, I did not understand exactly what you say... (by firix)
|
by Banana29
How to cut getline short
|
|
[2 replies] Last: That easy, eh? :) Thanks a bunch! (by Banana29)
|
by pabloist
Polymorphic constructor?
|
|
[3 replies] Last: did you comment out the AddSkill function in the cpp file? cuz if not ... (by ERanz21)
|
Can't find a certain constructor. |
|
[3 replies] Last: Doh, Just realised that I wasn't linking my files properly. So... (by Despot Despondency)
|
by alokado
two demension arrauy
|
|
[2 replies] Last: Thanks alot! Problem fixed and works prefectly (by alokado)
|
sizeof operand and undeclared identifier errors |
|
[4 replies] Last: Got it to compile now, thanks for your help. (by closed account GhqjLyTq)
|
by TpOreilly
Arrays
|
|
[10 replies] Last: ah ok, thanks (by TpOreilly)
|