No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
34 Posted Topics
Re: hey, i will like you to post the code you have written so that i can help with it... i have written it and it worked but i want to make sure you know it and not just copy mine... i will tell you where the mistakes are and where … | |
Please anybody, I need to backup my macbook before I install windows and I have all my windows backup on the same external hard drive, every time I try to back up my macbook, I get a prompt to erase my external hard drive first and it contains all my … | |
hey, i am, sorry for just asking now.......:( | |
I'm studying for my CCNA certification exams, I need people who's on the same ish to join me and we'll have discussions on it... I am now reading chapter 6 of the material.. | |
I am about to start studying to get a ccna certification, I need a couple of guys who's already certified to give advise me on how to go about it, I have a pdf file that I want to use to study but I heard it's best I use a … | |
Re: I hope IclassFact is not a class template? check! | |
Hey, I am deji, i have been on this site for a while now but i have never been on this database forumn.... I used to be on the c++ forumn.... I was given a project with one of my coursemates in school.... we were asked to automate our school … | |
Hey, I just want to start using mfc to create windows objects, i have never tried coding using the mfc and opening the tutorial page on microsoft's msdn is the slowest thing that can happen around here. so i will like someone to quickly give me a hint on how … | |
hey, I am a beginner in c++ and i think i have learnt a little about how the program functions... I have been able to write programs that can run only in the DOS mode and i cant even write a windows application but i now understand the program a … | |
i want to send a mail to a friend with my one-page compose mail site, i dont know how to implement the to: field, know a little of ![]() | |
hey, i need help with this, i use VC++ 6.0 and i am having problems with opening files in multiple file modes for example [code] fstream inOutFile( "addicted.dat", ios::in | ios::out ) ; [/code] my compiler behaves abnormally, i dont know what is wrong, if i try single mod, it … | |
Hello everyone, I know it is quite a long time you have heard from me, dont mind that it was due to the programming and all other stuffs. I am just curious to know what happens next. I can now say i am a c++ programmer and i can write … | |
I need you to help with this.... I always get confused when a program that appears simple takes me long time to finish, and i always think that i am not up to the task... i always think that a good programmer is not suppose to take that much time … | |
hey, please i need help with the program tutrtle graphics, i have been trying to solve the problem but i have difficulty with turning right and left... i have been trying to solve that but oops...... i dont need a code... all i need is a hint, i will figure … | |
hey, i read that in C++ some programmers consider using break and continue statements as a violation of structured programming practise....... and usually avooid using them except in switch statements..., i will like to know how to use the structured equivalent of these statements..... i want to know the statement … | |
hey, i just read about passing arrays to functions in C++ like this function modifyArray(arrayname, arraysize); i need help with sending an array and another variable to a function... since the array size is an integer and the second integer is also going to be in the argument... i dont … | |
Re: hey, you have to show that you have actually tried to solve it by submitting the codes you've written... so that someone can help you where you have a knot.... that is how it is done here. | |
Re: perhaps, it is ok that way and knowing it the other way is also part of search for knowledge.... learn both..... perhaps, it is ok that way and knowing it the other way is also part of search for knowledge.... learn both..... [code] if (total <= start) increment = 0; … | |
hey, it's me again, i need help with creating a header file for some functions so that i can use the functions in some other programs.... for example a header file that will include the function prototypes that i can access... I need the syntax for it.....:) | |
hey, its me again, i was thinking of asking you this questions since.... I study C++ by myself without any tutor apart from the help i get here... although i understand everything i read... and i solve most of the exercises easily .. except few... i don't know.. is this … | |
Re: hey, may be you should post the code that generated the error | |
Hey, Please i need help with prime numbers... i have been cracking my brain for the problem since two days ago..... I used this test code but there is a problem with it [code] for( number=3; number<=1000; count++){//to test number 3 to 1000 if(number%2 != 0){//to skip even numbers for(int … | |
Re: hey, i will like you to try this for C, i use VC6 but the program is C++ and i get my random numbers anytime i want.... first include this [code] #include <cstdlib> using std::rand; [/code] after that.. whenever you want to generate the random numbers, [code] rand()%4 [/code] wil … | |
me again, I need help with that so called templates in C++, i need someone who can break it down to bits for me, i just read it today and i understand few of it, i understand that templates are used for substituting function overloading... but i was thinking that … ![]() | |
:rolleyes: I need some one to define prime numbers for me A full definition, I am trying to write a program to determine wether a number is prime, print all prime numbers in a specific range ... e.t.c so i need a full definition of prime numbers, i know prime … | |
hey, i just want to take animation as a leisure study and i have gotten some ebooks that i can use.... i want someone who is also a beginner or someone who can help me with the software..... :) i am like a new born baby in the MAYA world ![]() | |
please i need someone to help write a program that receives some sets of binary numbers and convert to decimal..... using C++ | |
Re: hey, I copied your code to see if i could do something about it, you know what i found out?...... the compiler is built in such a way that whenever you type a wrong input, for instance you declared a char and you input an int; it executes the program … | |
pls i will like you to help me with something i was practising with c++ classes and i created a class interface called GradeBook, you know that i will need a source file to write the details of the implementation of the public functions? so in the source file i … | |
Hey, There are somethings i dont understand in classes, for example let us examine this : we created a class Employee , with private data members firstName, lastName and monthlySalary; we have some functions that performs operations like a constructor, set and get functions on this data members. Now! we … | |
Re: // program for statement #include <iostream> using std::cout; using std::cin; using std::endl; int main(){ //declaration of variables int i=0, next; int count = 1;// count =1 so that it sets the end point in the for statement double sum=0, average; cout<<"\nEnter 9999 when you are done with input\n "; for(i=0; … | |
i just started working on structures and i am having this problem: i created a structure "point" thus : [code] struct point { double x,y; }; [/code] i created another structure "rectangle" that contains a point as the origin like this: [code] struct rectangle { point origin; double width, height; … |
The End.