• 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

    • Formatting would be awesome if fully customised and then roll out the settings as a company wide standard.
    • I just want to know why the volume control feature in the browser version keeps appearing then disappearing, here today - gone tomorrow. Now it's gone again. Annoying as hell.
    • When you have only lies and blood libels to present, you've lost. And how hard is it for you to look up BBC and AP? You hate Jews, just admit it.
    • This article does not make sense and it’s very evident, the bug wasn’t confirmed to exist, because the application itself runs on editions of Windows which make it impossible to run Hyper-V VMs on, “Basically, Claude Desktop on Windows spins up a 1.8GB Hyper-V virtual machine if you use Claude Cowork or agent mode even once.”, suggests the bug is caused by something else otherwise it would only happen to users with the capability of running Hyper-V VMs and that’s only if Hyper-V was enabled which is by default not enabled. The true issue is that the author who reported the bug used the incorrect terminology, it’s actually a container, not a VM that is being started by the way. There were users on macOS reporting the same issue, Hyper-V, doesn’t exist on that platform obviously. Every single user who confirmed the problem in the last week was either using macOS making this issue impossible to be relevant to them, or was a comment talking about WSL, which the author indicated 3 months ago was disabled.
    • “To prevent hallucination issues and keep the database clean, the platform uses a multi-agent verification loop to check code quality.” - This absolutely isn’t happening. ”Before the massive rise of LLMs, which tanked its traffic by about 50% over the last couple of years, Stack Overflow was the go-to website for millions of programmers seeking coding solutions.” - It still is trusted, because the community of users, blocked other users from submitting false and misleading answers generated by AI agents that can be convinced something it generated is actually incorrect even if it’s actually correct. The company itself doesn’t know what it wants to be so it keeps trying and failing to introduce AI features to the platform. This effort will also fail, already submitted one successful poison pill, look forward to generating more.
  • Recent Achievements

    • One Month Later
      Sopa flores earned a badge
      One Month Later
    • First Post
      StaticMatrix earned a badge
      First Post
    • Week One Done
      StaticMatrix earned a badge
      Week One Done
    • Rookie
      lamborghiniv10 went up a rank
      Rookie
    • One Month Later
      pinnclepd earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      524
    2. 2
      PsYcHoKiLLa
      211
    3. 3
      +Edouard
      160
    4. 4
      Steven P.
      98
    5. 5
      ATLien_0
      83
  • Tell a friend

    Love Neowin? Tell a friend!