by xenovia12
struct operators
|
|
[2 replies] Last: you mistyped your second example okay thanks. So they are both equi... (by xenovia12)
|
by darkmage06
Finding the month with the highest total rainfall
|
|
[6 replies] Last: Thank you so much! Finally manage to find the highest total rainfall. ... (by darkmage06)
|
by Lemmon
Dividing integers.
|
|
[1 reply] : Try something like: int x = 5; int y = 2; double z = static_cast<dou... (by jlb)
|
by lays
What if integral meet float point? type conversions.
|
|
[1 reply] : When an integer is implicitly converted into a float, its value is rou... (by Cubbi)
|
by sambos
binary files / reading specific lines
|
|
[5 replies] Last: Hi again, I've had some success today after having a day's break. Wit... (by sambos)
|
by lays
What does this mean? A exercise from C++ Primer. (someValue ? ++x, ++y : --x, --y)
|
|
[4 replies] Last: Yup. Nice catch! (by Duthomhas)
|
by Torm04
Monkey Assignment Help
|
|
[1 reply] : Do you know a "2D array"? Do you know a "nested loop"? (by keskiverto)
|
utf |
|
[2 replies] Last: Thanks for your answer ! Yes, I converted my “string” into binary... (by closed account GvMiNwbp)
|
Else Statement not Running |
|
[10 replies] Last: if (studentGrade > 89) all greater than 89 is true else if (studen... (by xenovia12)
|
by alexBB
How to get rd of hidden characters in source code?
|
|
[15 replies] Last: Thank you again, computergeek01. It bothers me that so much code poste... (by alexBB)
|
by yonutbanu
(C++) Read numbers from text file
|
|
[1 reply] : 1. Define a vector (see Cplusplus.com Reference for Container). 2. Ope... (by tcs)
|
by awilds
Running a program from the command prompt
|
|
[1 reply] : Some IDEs forces stack and or heap memory initialized to zero when lau... (by tcs)
|
Compile OpenGL window |
|
[1 reply] : Either grab the 64-bit versions of the glew libraries and .so's or com... (by Computergeek01)
|
by Wantautas
C++ Climate monitoring and management system
|
|
[1 reply] : Let me translate your post: I need help with something. Please help. ... (by bugbyte)
|
by maciej53
Lambda expression as binary predicate for a map
|
|
[2 replies] Last: Thanks for your help and also the links, guess I haven't been able to ... (by maciej53)
|
by bgmnk
Calling Functions
|
|
[5 replies] Last: Enable C++11 mode. Compile with -std=c++11 and these too: -Wall -We... (by JLBorges)
|
by h4ever
How copy binary data to string of type char*?
|
|
[8 replies] Last: Ok, so I added this code: printf("test:%d\n",files .program ); // 0 p... (by h4ever)
|
by Atton
Putting the value of two integers together
|
|
[3 replies] Last: If this is not homework: #include <iostream> #include <string> int ... (by JLBorges)
|
by N3R
Console Application Advice
|
|
[4 replies] Last: Thanks! (by N3R)
|
by rjghoul
Random array without duplicates
|
|
[2 replies] Last: Thanks for the point, problem solved. (by rjghoul)
|