by knh8
Limit the number of digits in an output
|
|
[1 reply] : cout << 1234567/100; (by Bazzy)
|
by jemiah06
Depreciation Table
|
|
[6 replies] Last: #include <iostream> using namespace std; int main() { doubl... (by jemiah06)
|
by jared85
Padding Numeric Outputs
|
|
[2 replies] Last: Sorry, I haven't enough time. This code makes the followings: 00000... (by screw)
|
by aliens112
Program running time :)
|
|
[4 replies] Last: thanks a lot yadude1e3 :) (by aliens112)
|
by Anon1113
Bit of trouble with overloading assignment operator (=)
|
|
[2 replies] Last: OP here. I've figured it out. I didn't have a copy constructor and ... (by Anon1113)
|
by ronak
Comapre Two diff data members
|
|
[3 replies] Last: Here is a problem: if(sales::scode == product::code) { strcpy(sal... (by screw)
|
by argio
Compiler Error: Access violation (Segmentation fault) raised in your program.
|
|
[no replies]
|
by Joliedoll
simple problem
|
|
[2 replies] Last: Yeah I just saw that. I was reading up on the error. Stupid mistake on... (by Joliedoll)
|
by Joliedoll
quick question
|
|
[9 replies] Last: that's what I thought, thanks! (by Joliedoll)
|
by kebabacool
how to process many input
|
|
[3 replies] Last: Use a while loop around the go you want it to repeat. ( Like in you... (by firedraco)
|
by wtf
How to check for eof in file pointers?
|
|
[1 reply] : I believe it sets the global errno to eof or something (go look up t... (by firedraco)
|
by wtf
Why won't fclose work?
|
|
[1 reply] : You could have knackered you program earlier. How was outputfile init... (by kbw)
|
by wtf
How to check of successful opening of a file pointer?
|
|
[1 reply] : FILE *fin; //... fin = fopen("text.txt", "r"); if (fin == 0) ... (by kbw)
|
by yengineer
Scan For Devices On USB Host Controllers
|
|
[4 replies] Last: By the way, the HostController names are like this: HCD0, HCD1, an... (by guestgulkan)
|
by wtf
What do you all think of this method for declaring an array dynamically?
|
|
[3 replies] Last: The way to allocate dynamic arrays in C++ is using new : char *char... (by Bazzy)
|
by Triryche
Parentheses?
|
|
[2 replies] Last: Thanks!! Just trying not to create bad habits. (by Triryche)
|
by DBarzo
How to cast uint8* to short*
|
|
[7 replies] Last: Ok, I know. But the library I use (it is an rtp library) take care ... (by DBarzo)
|
by robezy
Unit testing tools for c++
|
|
[1 reply] : Have you done a google or forum search yet? This question has been as... (by kempofighter)
|
by Triryche
Just When I Though I Understood Pointers
|
|
[5 replies] Last: You can allocate memory: char *c; c = new char ; sprintf(c,"hello"... (by Bazzy)
|
by Deathgeese
Counter Not Working
|
|
[no replies]
|