
please wait
by HadiiMh
Help me Out With Factorials
|
How to write a program for the sum of this series Sum= 1/1! + 2/2! + 3/3! + 4/4! + 5/5! + 6/6! |
Dec 19, 2014 at 1:08am
[3 replies] Last: #include <iostream> int main() { double sum = 0; int dProduct = 1... (by Renthalkx97)
|
by Ch1156
Displaying Japanese text in C++
|
I'm unsure if this is a c++ issue or a Compiler issue, but i believe you should be able to display foreign characters in C++ so I assume its a C++ thing. So I w... |
Dec 19, 2014 at 1:06am
[10 replies] Last: I use Code::blocks too, it has to do with the encoding. If you encode ... (by jasonwynn10)
|
by Starmitten
Text Frame
|
I'm transitioning from python to C++ and am doing the classic text frame problem. I need to surround a welcome sign in "*". The text dose not have to be center... |
Dec 19, 2014 at 1:03am
[1 reply] : #include <iostream> #include <string> #include <algorithm> using name... (by jasonwynn10)
|
by mkeras2
Error with adding String to struct in header file
|
Hi all, I've been trying to create this header file that only contains this prototype struct so that I can use it across the different .cpp/.h files across my w... |
Dec 18, 2014 at 10:19pm
[4 replies] Last: Ok, thanks a lot, I think I understand now, I will do that. Just to cl... (by mkeras2)
|
by raminlich
data type range
|
Hi, what is range mean in data types?? for example: char 1 byte and -127 to 127 range i want to know what is this -127 to 127?? thank you |
Dec 18, 2014 at 9:06pm
[1 reply] : signed char 1 byte and -12 8 to 127 range (unless you are working... (by MiiNiPaa)
|
by Newie0001
Help
|
How would I go about cleaning up this program and making it easier to understand? Any advice? #include <iostream> #include <cstdlib> #include <ctime> #i... |
Dec 18, 2014 at 8:39pm
[12 replies] Last: Thanks! (by Newie0001)
|
by Newie0001
Advice please
|
I have to write a program that does the following: Write a program that produces a bar chart showing the population growth of the triokites until their popula... |
Dec 18, 2014 at 8:38pm
[no replies]
|
Bugfix help |
Write your question here. HI am trying to make a program that evaluates and gives a response based on the users name and gender. I cannot figure out why it i... |
Dec 18, 2014 at 7:55pm
[4 replies] Last: I wouldn't really consider that messy. Maybe put some spacing in betwe... (by Renthalkx97)
|
by kam hagh
saving app setting
|
I want to save my app setting like this example: ShowGeneralTab = 1 ShowFanTab = 1 ShowMonitoringTab = 1 ShowOnScreenDisplayTab = 1 ShowScreenCap... |
Dec 18, 2014 at 7:33pm
[12 replies] Last: #include <iostream> #include <cstdlib> #include <ctime> #include <str... (by kam hagh)
|
by nick050183
Separate colors in a listbox on Visual C++/CLI
|
I have been banging my head trying to find the answer to this question. I found this. https://social.msdn.microsoft.com/forums/vstudio/en-US/d21617c0-186d-4c... |
Dec 18, 2014 at 6:01pm
[no replies]
|
by ebucna
last char of a string
|
Hi all, I have to make this program to check if a string is a palindrome, so I wanted to check if first and last char are the same, if second and second from la... |
Dec 18, 2014 at 5:51pm
[5 replies] Last: Thanks to both of you, it was really helpful. I ended up using std::r... (by ebucna)
|
by subut
Calculation of time difference
|
I was trying to write a code where the inputs are strings like this 16:15 and 16:40 as en example and i want my program to store the difference 25 in a variable... |
Dec 18, 2014 at 5:06pm
[no replies]
|
by rko786
radiant to degrees
|
#include <stdio.h> #include <math.h> int main() { int i, n; float x, val, sum, t; printf(" Enter the value for x : "); scanf_s("%f", &x); n... |
Dec 18, 2014 at 3:53pm
[1 reply] : i'm struggling to make it convert back to from degrees to radiant (by rko786)
|
by simons
Error in linked list implementation
|
Hi , The code I have pasted is a linked list implentation where I am doing some create/insert/delete operations on a linked list. But I am getting the follow... |
Dec 18, 2014 at 3:09pm
[2 replies] Last: Hi it microsoft visual studio 2013. See below the full error Error 1 ... (by simons)
|
by rko786
help
|
its fixed |
Dec 18, 2014 at 2:00pm
[1 reply] : What's the problem? (by Renthalkx97)
|
by tazzthetecj
cygwin input mode trouble
|
im using cygwin, and i use vim when im opening a program to code. my cursor keys are doing some whack things when im in "insert mode" or if i make a mistake and... |
Dec 18, 2014 at 1:59pm
[no replies]
|
by Nielyboyken
DSO missing from command line - SFML
|
Hello I'm using SFML to make a connection with a FTP-server; but for some reason it ain't working. I still do use approximately the same code as provided at ... |
Dec 18, 2014 at 1:26pm
[3 replies] Last: Ah, I just had to ad -lsfm-system to my G++ command? :) Thanks for the... (by Nielyboyken)
|
by HarryCodes
Array of Functions?
|
Hello, I have been trying to create an array of (void) function pointers but so far to no avail. I'm not too sure how to create an array function pointers. The ... |
Dec 18, 2014 at 12:18pm
[2 replies] Last: #define ARRAYSIZE(ar) (sizeof(ar) / sizeof(*(ar))) typedef void (*... (by tcs)
|
by Octopus
stl is missing from the tutorial?
|
Hey I love this website. The explanations here are terrific. But I miss something. I have to learn about stl. I need to use lists and vectors in my homework,... |
Dec 18, 2014 at 12:02pm
[3 replies] Last: Thank you :) Rafael11, I really appreciate the fact that you wrote a c... (by Octopus)
|
by r0bot
loop for and pow() function
|
Dear C++ forum. I wish to make a series of numbers in a loop for , where each subsequent number equals 2 raised to the power of following natural numbers. I tr... |
Dec 18, 2014 at 9:27am
[3 replies] Last: I got it! thanks a lot! (by r0bot)
|