Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,152,468 members, 7,816,093 topics. Date: Friday, 03 May 2024 at 04:37 AM

C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. (1637 Views)

C++ Gurus: Urgent Help Needed. / Help A Friend To Learn Java, Php, C#, C And C++ / Difference Between C, C++ And C# (2) (3) (4)

(1) (Reply) (Go Down)

C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by Odogwujoshua(m): 1:09pm On Apr 06, 2015
WELCOME HERE,
IF YOU ARE GOOD IN C++ FEEL FREE TO BREAK IT DOWN SO WE ALL CAN LEARN THANKS.
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by DangotePikin: 8:55am On Apr 07, 2015
What do you want to break down?
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by Odogwujoshua(m): 6:15pm On Apr 11, 2015
the full.tutorials
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by Nobody: 8:44pm On Apr 11, 2015
Hehehhhe funny guy
Why not state a problem we help u thru it
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by Odogwujoshua(m): 9:05pm On Apr 11, 2015
its not so funny. I started learning on my own.
1) I need help in knowing the c++ programming terms and their uses. e.g iostream cmath and all others.
2) I've been able to only learn a few like basic console output.
3) I have big ideas but I need to learn this c++ it'll help a long way. I spent heavily trying to set up a network which I stopped halfway. if not I saw a place around to learn it for 2 months for just 50k. close to core area asaba.
4) all help here would be appreciated by any means.
5) thanks for helping.
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by Borwe: 6:24am On Apr 12, 2015
your paying to learn this stuff? LOL.
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by netesy(m): 6:29am On Apr 12, 2015
please goto youtube and get plenty free tutorials. FYI
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by Odogwujoshua(m): 5:34pm On Apr 12, 2015
yea thanks. but dont you think we can make here a c++ full explained thread. it'll help thoes with low data budget. look into this. anyway ill check youtube
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by ijeezlux(m): 4:13pm On Apr 17, 2015
hope u guys av seen a stack class implementation... Well if u av nt seen it b4 u can download the code snippet online. My question is how well and efficiently can i use a vector class in place of a stack.
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by BlueMagnificent(m): 7:46am On Apr 18, 2015
ijeezlux:
hope u guys av seen a stack class implementation... Well if u av nt seen it b4 u can download the code snippet online. My question is how well and efficiently can i use a vector class in place of a stack.

You should understand the difference between them and know when to use which. Stack operates based on Last-In-First-Out so if it's this type of operation you need in your program then stack (std::stack) would suit you right. On the other hand if you are after array-like functionalities then vector (std::vector) is highly recommended.
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by ijeezlux(m): 11:00am On Apr 23, 2015
a little brain teaser for u.
How can u halt ds loop
int i;
while(cin >>i)
{
.
.
}
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by BlueMagnificent(m): 2:25pm On Apr 23, 2015
ijeezlux:
a little brain teaser for u.
How can u halt ds loop
int i;
while(cin >>i)
{
.
.
}

by adding the "break" keyword when a condition is met

1 Like

Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by Borwe: 8:37am On Apr 26, 2015
ijeezlux:
a little brain teaser for u.
How can u halt ds loop
int i;
while(cin >>i)
{
.
.
}

Bro if in Linux just press ctrl+D instead of adding input. or input something that isn't an integer EG a letter.
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by Odogwujoshua(m): 11:03pm On May 03, 2015
had to learn html/css, javascript , jquerry. so as to get an easy understanding of programming . im done with html/css and java script. moving to jquerry. once i'm done ill take on c++: itll help me greatly to understand programming terms and uses. thanks to code academy.
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by ijeezlux(m): 5:12pm On May 04, 2015
quote author=Borwe post=33118503]

Bro if in Linux just press ctrl+D instead of adding input. or input something that isn't an integer EG a letter.[/quote]
lol... Bro u ar on the ryt track. U got it ryt. Inputing Eof (end of file) wil halt the loop which is ctrl + z in window or ctrl + d in linux.
Its not advisable to halt it by inputing a different data type because dis myt affect the istream else where in the program
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by ijeezlux(m): 5:13pm On May 04, 2015
Borwe:


Bro if in Linux just press ctrl+D instead of adding input. or input something that isn't an integer EG a letter.

lol... Bro u ar on the ryt track. U
got it ryt. Inputing Eof (end of
file) wil halt the loop which is ctrl
+ z in window or ctrl + d in linux.
Its not advisable to halt it by
inputing a different data type
because dis myt affect the
istream else where in the
program
Re: C++ Gurus Get In Here Lets Dissect C++. C++ A_z Tutorials. by ijeezlux(m): 1:45pm On Jul 18, 2015
i have a little issue that i need u guys to help me clarify.... i built a class and i intend to store uncountable number of the class object in a randam access file.
in the implementation of the class there is a private data member of type char eg char client_id[11]; ..... since the file is a random access file i can access any record in the file instantly without starting from the begining of the file. my intention to use the client_id as my unique key to instantly access any of the record in the file that i wish to. for instance let me say the the client_id is (client_id="306AGHg152"wink.
so how can i use this client_id which is my unique key to search for the object whose client_id is (client_id="306AGHg152"wink.
pls c++ gurus in the house, i meed ur contribution

(1) (Reply)

Development Of An Android Game Using Unity3d Engine / Gtb Gaps Integration / When And Why To Study Computer Science

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 20
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.