• 0

Newbie C++ Help


Question

Recommended Posts

  • 0

Dont know if its any use, or if its been found before, but IM not looking through 11 pages to see.

<link snipped--copyright infringement>

ITs the whole The

C+ +

Programming

Language

Third Edition

Bjarne Stroustrup

In PDF format XD.

Im using it atm.

Edited by John S.
  • 0

I thought I might add my input into this.

To get a good grounding on programming in general this book is a must read. It's a very tiny handbook as well, created by the founders of the C Programming Language.

Kernighan and Richie - The C Programming Language

It's aptly named as it is a no non-sense approach and tells very well how to make data structures, functions, arrays, and the basic functions of C. Though it took me a while to get my mind around a lot of the stuff written in the book. It all made picture perfect sense. It is a very System Engineering esque approach to programming, and they include the source code for the functions such as fgets, printf, and scanf.

I am learning C++ now, then moving onto C# after (After all, it is an exact copy of Java - Remade to have Microsoft brand on it).Another book was Data Structures and Algorithms with a picture of a waterfall on the front page, but that's for more advanced projects like Hash Tables, and AVL Trees.[That book got me full marks for my First Year University project].

I'm gonna start teaching myself PHP/C/C++ soon and this thread is surely going to help me, but I'm a fair bit older than alot of the people in this thread looking to get into it too (20 as of last month) and I currently really only know HTML well. I was wondering, how long did it take some of you to learn C/C++/PHP to a somewhat decent level from scratch?I'm curious how much time I might need to invest into learning. :)

From the start? Took me a 6 months to a year to get used to C Programming. Far from being a master - Haven't put the effort to become one.I guess you could say I am lost for inspiration to code. Don't know what to code.

  • 0

I'm not sure if this has been addressed, but if it has, feel free to delete this post.

Sometimes a newcomer in C++ can't figure out why after using something like cin >> value, something like cin.get(), which is supposed to wait for data to be entered, doesn't block input (doesn't wait for input) like it is supposed to. The answer is due to the fact that the input buffer that cin uses ends up not accepting the newline character that the Enter key uses when inputting data into variables. For example:

#include &lt;iostream&gt;

using namespace std;

int main () {
	int x = 40;

	cout &lt;&lt; "Enter an integer: ";
	cin &gt;&gt; x;
	cout &lt;&lt; x &lt;&lt; endl &lt;&lt; endl;

	cout &lt;&lt; "Press Enter to exit..." &lt;&lt; endl;
	cout &lt;&lt; cin.bad() &lt;&lt; cin.eof() &lt;&lt; cin.fail() &lt;&lt; endl;
	//cin.clear();
	//cin.sync();
	cin.get();
}

In that simple program, the cin.get() appears to be ignored. The same thing happens with variables of type bool, char, int, float, double, etc. There is a way around this problem, however. Just uncomment the commented lines in the above program and behold the difference! The first commented line clears the error bits, which is necessary because if they are not cleared then the cin.get() will notice the error from the previous read operation and will refuse to try doing an unsafe read. The second syncs the input buffer with the input stream, effectively discarding whatever extra characters are left in the input buffer.

Also note that this happens when doing the same thing with a string variable (an instance of the C++ string class, not a character array). However, it has a much safer solution - getline(cin, string_variable) instead of cin >> string_variable. It works by doing the same thing, except it discards the newline character. You can test this by using cout << string_variable.length() << endl; after using getline() and verifying that the number of characters you typed is the same as the string's length.

It is common for this same thing to happen in C with things like getchar() and scanf. C does not have any way to flush the input buffer, however. To accomplish this same thing, you might use something like while (getchar() != '\n');, or if you have a really crazy C compiler you could use while (getchar() != '\n') { continue; }, though I've never run into this type of thing personally.

I hope this helps people in the future!

  • 0
How different is C# from C++? I'm a beginner to programming, and want to go into C#, but I'm wondering if it'd be best if I learnt C++ first...
They just happen to have the same letter 'C'.

They are 2 completely different languages. C# is basically VB.NET (the functions are common, the same .NET framework) with a Java/C++ syntax and some of its features are taken from both Java and C++. C# for example can inherit from a class, not multiple like in C++ but you can have reference variables like in C++ but with a different syntax though.

  • 0

noob question.... why the below declaration is not good?

#include &lt;iostream&gt;
#include &lt;string&gt;

using namespace std;

class Str {
	public:
		Str(string *s) {
			this-&gt;x=s;
		};
		string getStr() {
			return this-&gt;x;
		}
	private:
		string x;
};

int main() {

	Str d = new Str("BOO");


	cout &lt;&lt; d.getStr() &lt;&lt; endl;
	return 0;
}

and how would a valid code look like :) ty in advance

  • 0
Str(string *s) {
			this-&gt;x=s;
		};

The problem is the fact that you are passing a pointer to a string, but you're trying to assign the pointer to the string. If that sounded confusing, it is -- pointers can be extremely confusing at times. You would need to dereference the pointer.

I recommend the following, though Seismo's solution works just as well:

Str(string const&amp; s) { //pass it by reference
			x=s;
		};

However, if you have your heart set on using a pointer, here is the corrected code:

Str(string *s) {
			x=*s;
		};

  • 0

I have to say, if anyone is really serious about getting into some C or C++ I would seriously consider installing a free operating system such as GNU/Linux or FreeBSD. Once you get really in to it you will want to look at some advanced code for examples... and what better code to look at than the very software you are using! And what better way to learn than to hack it to pieces! Plus GCC is great :D

And for C++, one you have your head around the syntax, pointers, templates etc. I thoroughly recommend this book: The C++ Standard Library by Nicolai M. Josuttis: http://www.amazon.co.uk/C-Standard-Library...553&sr=11-1 Great read, great reference and good way to learn how to use templates and generic programming.

  • 0
ANyone know how to add color to c programming?> I want to change the font color and background color

That's quite an ambiguous question. You can use ASCII or ANSI colour codes in some shells I think... I'm pretty sure it does not work on the standard windows shell any more but it works in bash I think... So already it's becoming platform dependent. Anything else is all platform dependent. If you want to have colour on a text UI then look into ncurses: http://ndk-xx.sourceforge.net/ If you want a GUI then there are many options like GTK.

  • 0

Hi:

I don't know if anyone mentioned this, but I'd be curious if someone could comment on using Codeblocks compared to Bloodshed DevC++ as a noobie IDE. I'm tempted to get a Microsoft Visual C++ but I'm concerned about proprietary lockin in that all I'd ever be able to do is program Windows.

Thanks for any replies.

Jojo

  • 0

can any1 pls help my...why i'm getting this error on compiling

multiple definition of `function(double, double, double, double, double)'

the function is only declared once and there is the code for it, only 1 instance of it is in the whole file...

I'm using CodeBlocks latest nightly build

  • 0

main file

#include "student.cpp"

int main() {

    Student *alin = new Student("Alin", "Bata", "1870513350037", 2008, 6, 3, 5, 8, 4, 9);

    alin-&gt;studentPrint();

    ofstream store ("studenti.txt");
    if (store.is_open()) {
        store &lt;&lt; alin-&gt;getNume() &lt;&lt; alin-&gt;getPrenume() &lt;&lt; alin-&gt;getMediaGenerala() &lt;&lt;
 alin-&gt;getCrediteObtinute() &lt;&lt; endl;
    }
    else cout &lt;&lt; "Unable to open file" &lt;&lt; endl;
    store.close();

    return 0;
}

student.cpp file

#include &lt;iostream&gt;
#include &lt;fstream&gt;

#include "student.h"

using namespace std;

//constructors
Student::Student() {
        this-&gt;nume = "";
        this-&gt;prenume = "";
        this-&gt;cnp = "";
        this-&gt;promotia = 0;
        this-&gt;grupa = 0;
        this-&gt;notaAnalizaMatematica = 0;
        this-&gt;notaProgramareC = 0;
        this-&gt;notaAlgoritmica = 0;
        this-&gt;notaBazeleInformaticii = 0;
        this-&gt;notaEngleza = 0;
        this-&gt;mediaGenerala = 0;
        this-&gt;crediteObtinute = 0;
};

int calculcredite(double notaAnalizaMatematica, double notaProgramareC, double notaAlgoritmica, 
double notaBazeleInformaticii, double notaEngleza);

Student::Student(string nume, string prenume, string cnp, int promotia, int grupa, 
double notaAnalizaMatematica, double notaProgramareC, double notaAlgoritmica, 
double notaBazeleInformaticii, double notaEngleza) {
        this-&gt;nume = nume;
        this-&gt;prenume = prenume;
        this-&gt;cnp = cnp;
        this-&gt;promotia = promotia;
        this-&gt;grupa = grupa;
        this-&gt;notaAnalizaMatematica = notaAnalizaMatematica;
        this-&gt;notaProgramareC = notaProgramareC;
        this-&gt;notaAlgoritmica = notaAlgoritmica;
        this-&gt;notaBazeleInformaticii = notaBazeleInformaticii;
        this-&gt;notaEngleza = notaEngleza;
        this-&gt;mediaGenerala = ((notaAnalizaMatematica + notaProgramareC 
+ notaAlgoritmica + notaBazeleInformaticii + notaEngleza) / 5);
        this-&gt;crediteObtinute = calculcredite(notaAnalizaMatematica, 
notaProgramareC, notaAlgoritmica, notaBazeleInformaticii, notaEngleza);
};

int calculcredite(double notaAnalizaMatematica, double notaProgramareC, 
double notaAlgoritmica, double notaBazeleInformaticii, double notaEngleza) {
    int temp = 0;
    if(notaAnalizaMatematica &gt;= 5) {
        temp = temp + 6;
    }
    if(notaProgramareC &gt;= 5) {
        temp = temp + 6;
    }
    if(notaAlgoritmica &gt;= 5) {
        temp = temp + 6;
    }
    if(notaBazeleInformaticii &gt;= 5) {
        temp = temp + 6;
    }
    if(notaEngleza &gt;= 5) {
        temp = temp + 6;
    }
    return temp;
};

//deconstructors

//get functions
double Student::getMediaGenerala(void) {
    return this-&gt;mediaGenerala;
};
int Student::getCrediteObtinute(void) {
    return this-&gt;crediteObtinute;
};
string Student::getNume(void) {
    return this-&gt;nume;
};
string Student::getPrenume(void) {
    return this-&gt;prenume;
};

//print class
void Student::studentPrint(void) {
    cout &lt;&lt; this-&gt;nume &lt;&lt; this-&gt;prenume &lt;&lt; this-&gt;cnp &lt;&lt; this-&gt;promotia &lt;&lt; this-&gt;grupa &lt;&lt; 
this-&gt;notaAnalizaMatematica &lt;&lt; this-&gt;notaProgramareC &lt;&lt; this-&gt;notaProgramareC &lt;&lt;
 this-&gt;notaAlgoritmica &lt;&lt; this-&gt;notaBazeleInformaticii &lt;&lt; this-&gt;notaEngleza &lt;&lt; 
this-&gt;mediaGenerala &lt;&lt; this-&gt;crediteObtinute &lt;&lt; endl;
};

student.h file //here is the class declared

#include &lt;string&gt;

using namespace std;

class Student {
    public:
        Student();
        Student(string nume, string prenume, string cnp, int promotia, int grupa, double notaAnalizaMatematica, 
double notaProgramareC, double notaAlgoritmica, double notaBazeleInformaticii, double notaEngleza);
        ~Student();
//get functions
        string getNume(void);
        string getPrenume(void);
        double getMediaGenerala(void);
        int getCrediteObtinute(void);
//print function
        void studentPrint(void);
    private:
        string nume;
        string prenume;
        string cnp;
        int promotia;
        int grupa;
        double notaAnalizaMatematica;
        double notaProgramareC;
        double notaAlgoritmica;
        double notaBazeleInformaticii;
        double notaEngleza;
        double mediaGenerala;
        int crediteObtinute;
};

ty

  • 0
At first, I didn't really though many people would reply, Thanks. First, I think I am going to get started with C then move on to C++ and maybe create my first program(thinking too far ahead). Oh yeah, I am also 13 and I figure this is the best time to learn since I am yuong and I will get materials better. Again, Thanks for everything.

Ok shouldn't you try learning Visual Basic first? I tryed learning other languages first like WPF and stuff like that, it never worked out for me because Visual Basic is the beginning for programming. I never understood how programming worked, until I learned a little Visual Basic, which would help you learn the next programming language. Well I know this post is old, but it also is still valid for asking this question.

  • 0

I know I'm a little (very) late in this thread, but...

C++ is old! move to Java! it's much much better!

And better yet, focus on internet technologies, PHP or JSP or JSF and AJAX/CSS/XHTML

It's more fun than the old boring languages!

w3schools.com one of the best sources for most of them!

Edited by nonick
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Spotify finally removes the disco ball app icon in the latest update by Ivan Jenic Image: Spotify Spotify has just released an update that removes its now infamous disco ball icon. The update reverts the app icon to the familiar flat green logo after weeks of mixed reactions online. The icon arrived on May 13 as part of the company's 20th anniversary celebration and was always intended to be temporary, though Spotify only confirmed that after the backlash started. The disco ball took the internet by storm, as the reception was split. A vocal group of users called it ugly and disorienting, with some iOS users noting that the 3D glowing effect made the app look like it was stuck mid-update. On the other end, the icon picked up a following of its own. Its retro, three-dimensional look immediately stood out against the flat, minimalist aesthetic that has dominated app design for years. It even started a small movement, spawning what people started calling "discomorphism," a mashup of disco and skeuomorphism. Other brands started posting disco ball versions of their own logos, probably in an effort to ride the wave of memes that flooded the internet during late May. Spotify has had a turbulent relationship with its user base lately. Besides the disco ball icon, which certainly wasn't appreciated by everyone, the company has also received backlash for its willingness to include AI-generated music on its platform. On May 17, Spotify promised the old icon would return “in a few weeks.” And now it looks like that time has finally arrived. So, whether you liked the disco ball or it made you uncomfortable, it’s now gone for good. The next time you update the Spotify app on your phone, the old, flat-design icon will return.
    • Playground Games confirms Forza Horizon 6 save wipe bug by Taras Buria Forza Horizon 6 was launched last month to critical acclaim (check out our review here), and it became a smash hit in an instant. Now, weeks into the launch, with die-hard fans clocking hundreds of hours, Forza Horizon 6 is facing a serious issue: save wipes. After multiple complaints on Reddit and social media, the studio issued a statement. The problem with missing saves came shortly after Playground Games promised the initial batch of gameplay tweaks and improvements. Unfortunately, there seems to be no temporary fixes for those affected by unexpected save wipes. However, the studio published a new support document with a few important steps users should try. First, affected gamers should open a support ticket immediately (go here to file one) so that the support team can try recovering the lost progress by reverting to an earlier save. Playground Games says this should be done the same day the issue occurs. Meanwhile, gamers are urged not to start new play sessions or create new saves. The studio also published a few things gamers should try to avoid to prevent potential progress loss: Ensure your Gaming Services app on PC or XBOX Series X|S console is fully up to date. On XBOX Series X|S consoles, disable Quick Resume for Forza Horizon 6: To disable Forza Horizon 6 from using Quick Resume, highlight the game box art anywhere in the console experience (Home, My Games & Apps, Pins, etc) and then press the Menu button, then go to Manage game and add-ons > Quick Resume settings > Disable Quick Resume. Ensure you are online when ‘quitting’ the game. Give your saved time to sync to the cloud before powering off or switching devices. Do not force quit the game during save screens. Do not power off the device during gameplay. Always "Quit" (console) or "Exit to desktop" (PC) once you've finished your play session, ensuring the save icon is not visible when you’re closing the game. Before turning off your console, shutting down your PC, or force-closing the Steam app, give your devices or clients at least a few minutes to ensure your latest progress has been synchronized with the cloud. This will reduce the risk of progress reversions as you switch between different platforms. XBOX Series X|S consoles, Steam, and the XBOX app on PC all include game save indicators that confirm your progress has been synced. You can read more about the bug in the official support document here. Forza Horizon 6 is currently available on PC (Steam and the Microsoft Store), Xbox Series X|S, and Game Pass. The game is also coming to PlayStation 5 later this year.
    • If only Windows would have a toggle switch labeled "Get the latest updates as soon as possible" inside Windows Update settings... But nah, let's hide the new stuff inside a controlled feature rollout, even if the user is explicitly asking for the new stuff as soon as possible. Awesome idea!
  • Recent Achievements

    • One Year In
      slackerzz earned a badge
      One Year In
    • One Year In
      highriskpaym earned a badge
      One Year In
    • One Month Later
      highriskpaym earned a badge
      One Month Later
    • Week One Done
      highriskpaym earned a badge
      Week One Done
    • Week One Done
      FBSPL earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      510
    2. 2
      PsYcHoKiLLa
      199
    3. 3
      +Edouard
      157
    4. 4
      Steven P.
      84
    5. 5
      ATLien_0
      74
  • Tell a friend

    Love Neowin? Tell a friend!