
please wait
by yj1214
Am I understanding dll and lib files right?
|
In order to statically link, you need to compile your object file with the lib file. Then your exe has all the informations...am I correct? In order to dynamic... |
May 28, 2015 at 9:50am
[5 replies] Last: Game libraries such as Irrlicht don't requires to link with lib files... (by andywestken)
|
by esolve
how to differentiate static library/compilation with dynamic?
|
I want to compile a program with two libraries: lpcap and levent but it seems to me that the commands for static compilation and dynamic compilation are the sa... |
May 28, 2015 at 9:44am
[3 replies] Last: PS (Aimed at my future self, as much as anyone else...) In the MinGW ... (by andywestken)
|
by sarakarla
Cannot Reading File
|
Hi, Last week, I bought shared hosting at asphostportal. Now, I have little problem. Could you help me please? I am having a problem in reading a file i tried... |
May 28, 2015 at 8:36am
[1 reply] : I believe the correct error checking syntax is ifstream inFile; if(... (by shadowmouse)
|
by MidnightTK
Sonic C++ programing
|
Admin Please Remove this topic. |
May 28, 2015 at 5:31am
[1 reply] : yea i do. But you should use OpenGL because DirectX is known for bein... (by poteto)
|
Class Call problem |
A friend and I can not get this program to work. It is supposed to get the Passer rating of two players and then compare them. When we get to the second player ... |
May 27, 2015 at 9:10pm
[2 replies] Last: Line 81 is reading the newline that you entered after the first player... (by dhayden)
|
by HackerMine
Looping help
|
the first run is fine. But on the second run, it skips the "Student_Name". What is wrong with the code? #include<iostream> #include<iomanip> #include<s... |
May 27, 2015 at 7:47pm
[2 replies] Last: It happens sometimes when you use getline() and cin together in a prog... (by newbiee999)
|
by danasko
...
|
.... |
May 27, 2015 at 5:42pm
[1 reply] : you should give details on what you are stuck on. Nobody is going to ... (by erbisme4)
|
by Tonyx97
OpenGL Lines problem
|
Hello guys, I scripted a simple "room" generator, I only made the floor code but I realized that I have this problem, Could you tell me how to fix it? Thanks fo... |
May 27, 2015 at 5:37pm
[1 reply] : my guess http://en.wikipedia.org/wiki/Z-fighting (by ne555)
|
Help with making run program be able to enter decimal numbers |
\ |
May 27, 2015 at 5:20pm
[5 replies] Last: You can't have an array of float length. I'm pretty sure you can't hav... (by shadowmouse)
|
by Xerox
hi can anyone help me to complete the code for searching a name and update some record which is to be saved on a database?
|
#include<cstdlib> #include<iostream> using namespace std; struct newemployee { char firstname ; char las... |
May 27, 2015 at 4:23pm
[2 replies] Last: I suggest that you store the entire struct in a vector. newEmployee i... (by newbiee999)
|
by jiwaniakbar
c++ best practices help
|
In Below program do you see any error or scope of improving the design? #include <stdlib.h> #include <iostream> #include <string> using namespace std; ... |
May 27, 2015 at 2:42pm
[4 replies] Last: Once you've followed the first suggestion you were given, you may find... (by MikeyBoy)
|
by hamit
Find a specific string from line and match it to whole document
|
i have a text file which is about 1000 lines. as an example some of the first lines are given as bellow. CallllStarted_Cap900 10.160.159.37 32514 unid to 10... |
May 27, 2015 at 1:48pm
[4 replies] Last: You are not keeping track of which lines have already been processsed.... (by cire)
|
by ngoyal1987
Why the size of array "g1" is 6 after strcpy ? It should be 9
|
#include<iostream> #include<string.h> using namespace std; int main(){ char g1 = "hello"; char g2 = "12345678"; std::cout<<"g1 size Before... |
May 27, 2015 at 1:43pm
[6 replies] Last: Great !!! Thanks a lot everyone for your responses. :) (by ngoyal1987)
|
by soujaboy12
c++ temperature
|
http://i.imgur.com/IXVvC8I.jpg I am supposed to do an assignment but does anyone have any clue about it? i'm rather new to programming if you guys could give m... |
May 27, 2015 at 1:39pm
[2 replies] Last: does anyone have any clue about it? yeah sure i'm rather new to pro... (by Gamer2015)
|
by Ozzy69
how mod Of 5%47???
|
What The logic? |
May 27, 2015 at 1:15pm
[2 replies] Last: simply put: 5 / 47 = 0 5 - 0*47 = 5 -> 5 % 47 = 5 (by Gamer2015)
|
by Sheaoswald11
How do i get my information from my array to cout in a block formation thanks
|
// // main.cpp // Final // Created by Shea Oswald on 5/13/15. // Copyright (c) 2015 Shea Oswald. All rights reserved. // #include <iostream> #inclu... |
May 27, 2015 at 1:14pm
[2 replies] Last: Xcode Automatically copyrights ik its funny. And by block formation i ... (by Sheaoswald11)
|
by ZawarKhan
Counting words in a String
|
#include<cstring> #include<iostream> using namespace std; int main() { int word=0; char sent ; cout<<"Enter a Sentence:\n"; fgets(sent,200,stdin); ... |
May 27, 2015 at 11:37am
[2 replies] Last: 1. Code tags. 2. http://www.cplusplus.com/forum/beginner/1/ (by R23MJ)
|
by woodbras
5 Volts reaction in code
|
Hello everyone! I have a question. I have code for LED stripes and I want to make i trick with power. When I turn On power (5 Volts) I want to see working first... |
May 27, 2015 at 9:45am
[3 replies] Last: I ll pay for help. I lost interest on that line, thanks When button... (by Gamer2015)
|
by shiftroyal
Error between Switch and For
|
Sorry if there's anything wrong i'm new on this... I've spent two days trying to find a solution to this error, and i can't seem to find one; so i have to make ... |
May 27, 2015 at 5:52am
[4 replies] Last: So how do i fix it I already gave you the answer: https://www.google... (by admkrk)
|
by Osej Alhasad
Output a .txt file
|
How can I show the content of a txt file in the console, just as it is in the file? I mean, I've already tried line by line, but I need to have some spaces. ... |
May 27, 2015 at 4:11am
[2 replies] Last: THANKS! I really thank you! It worked! And it worked amazingly! I sho... (by Osej Alhasad)
|