
please wait
by beakie
Dependency Utilisation
|
Can anyone point me in the direction of learning how to correctly utilise existing packages in my c++ code? Say I wanted to call adduser within my code. I sh... |
Apr 30, 2013 at 6:56pm
[2 replies] Last: Thanks for your reply! I have been told on these forums in the past t... (by beakie)
|
Completed Game design advice |
HI, I have a completed project of a checkers game. My module is a Design and Implementation module I am asking if someone can run through my code and see if ... |
Apr 30, 2013 at 9:54am
[no replies]
|
by Arbondawn
listing .txt files
|
Hey, guys. Doing some homework on some very basic Unix commands and getting really frustrated. I'm told to list all the text files in a directory using a relati... |
Apr 29, 2013 at 11:10pm
[2 replies] Last: Well I thought they did. I execute them normally and they work just fi... (by Arbondawn)
|
by Yoda
Need help + suggestions on windows/linux dual boot
|
Mainly used to windows, but trying to learn programming in C++. Was wondering the best way to install a dual boot and what version of linux would be BEST to... |
Apr 28, 2013 at 1:33am
[7 replies] Last: well .tar.gz is just another compressed format, similar to .zip. in ub... (by drew887)
|
New to linux |
I am starting linux. i am using Ubuntu, and when i compile m c program with gcc Hello.c it builds to a.out. what is this? an object file, how do i turn it to... |
Apr 27, 2013 at 11:33pm
[6 replies] Last: Just type gcc -o Hello Hello.c into the terminal > (Not sure if Ubu... (by Smac89)
|
by DaveJ61
Serial Port problem
|
I am running Xubuntu 12.10 on Virtualbox and using Codeblocks 10.05 with gcc version 4.7. I am trying to write some code to read and write to a device on my ser... |
Apr 26, 2013 at 1:54pm
[no replies]
|
by phox314
Help with output delays
|
Hey c++, I'm trying to write a code so that text is outputted one letter at a time (every 50 milliseconds or so - think of the "pokemon" style text). I am usin... |
Apr 24, 2013 at 12:09am
[2 replies] Last: or you can keep it simple std::string str; std::cout << "Please ente... (by giblit)
|
by zener
Start and close a programm
|
I want to start and then to close a programm. I saw that i can use execlip to start but can i to close ? Thanks |
Apr 22, 2013 at 10:58am
[no replies]
|
by sashuman
Help with vector program
|
This is the program I am currently working on, unfortunately my code is not compiling, and I can not figure out what is wrong with it. Someone help, please! I h... |
Apr 21, 2013 at 10:04am
[3 replies] Last: You are also declaring the vector values twice. (by Zaita)
|
by monaj
Please help me with a c++ live project
|
Hi Friends, I want to go for a c++ experience interview but I don't have any live c++ project experience. Could you please give me c++ live project with a smal... |
Apr 21, 2013 at 6:16am
[2 replies] Last: If you don't know c++ you should not go for a job that uses c++. Maybe... (by giblit)
|
by xubin
detect key combinations in c/c++
|
Hi all How can I detect a key combination in a console application with c/c++? e.g ctrl+f4 or other combinations. Thanks |
Apr 19, 2013 at 9:30pm
[1 reply] : One solution would be to use the ncurses library. (by IndieExe)
|
Pointer incrementing |
Hi, I am trying to increment the pointer I send when creating a pthread but it doesn't compile. The increment is at line 30, its written in C. How can I get thi... |
Apr 18, 2013 at 10:12pm
[5 replies] Last: I don't know why or how but it compiled, ran, and worked! (by farmergeoff2003)
|
by zener
Listening linux event
|
Hello, am new to linux and I have the following problem: When I create a function or a thread with an infinite loop my program gets stuck inside the loop a... |
Apr 18, 2013 at 2:19pm
[no replies]
|
ofstream stops working mid file |
ofstream data("character.data"); data << "health{ "; data << maxHealth << " "; data << health << " }" << endl; bool quit = false; data << "attack... |
Apr 18, 2013 at 12:12am
[4 replies] Last: Did you check the file after data has gone out of scope? Otherwise try... (by Peter87)
|
by akki199421
Changing Timestamp
|
Hi, i m working on a project to simulate the behavior of touch command using c programming in linux. I can create the file easily but can't change the time stam... |
Apr 17, 2013 at 8:00pm
[2 replies] Last: thank u (by akki199421)
|
by knowNothing
Semaphores
|
Let's say a semaphore(bm) has been put to wait or sleep, after P(bm). This means that in my case its sem_op=-1 and absolute value of sem_op > semval. The curre... |
Apr 17, 2013 at 5:45am
[2 replies] Last: Thank you! :) (by knowNothing)
|
Changing Memory Values (Mac)? |
Hello, I am writing a trainer for a flash game, but I'm a little confused. Every single function/tutorial I looked at uses windows.h dependencies, which obvi... |
Apr 16, 2013 at 7:53am
[5 replies] Last: You may try and use Custom USB drives for this at http://www.usbpromos... (by terryss)
|
by cciarleg
Serial Read Memory Corruption Error
|
Hi, I am not sure if this is a code or hardware problem anymore, but I'm hoping someone will have some insight. Bear with me for the long explanation. I ... |
Apr 15, 2013 at 4:59pm
[1 reply] : I haven't read all the commentary, but did you really mean this? stat... (by kbw)
|
XOOPIC/OOPIC code |
Hi All I want to use XOOPIC/OOPIC code written in c++ and available from http://ptsg.egr.msu.edu/ but I cant run this code.I am sure that this code is true and ... |
Apr 14, 2013 at 6:06am
[no replies]
|
by Anmol444
What is strncpy
|
In this code the function strncpy accepts 4 arguments but in the reference here at cplusplus.com it only accepts 3? Reference: http://www.cplusplus.com/referen... |
Apr 13, 2013 at 10:05pm
[16 replies] Last: Ok (by Anmol444)
|