Search found 2 matches
- Thu May 13, 2010 8:49 pm
- Forum: Programming Languages & Compiler Theory
- Topic: Pseudocode
- Replies: 9
- Views: 47655
Re: Pseudocode
Yes, really easy to learn with this example. You have used  Pseudocode and follow the standard. It is work perfectly so basic understanding about Pseudocode might be easy with this.
		- Thu May 13, 2010 8:40 pm
- Forum: C/C++ Programming
- Topic: operator overloading in c++
- Replies: 3
- Views: 5801
Re: operator overloading in c++
Operator Overloading means operator use twice in a row. Operators such as +,- ,etc. Now i will explain with example.
int i=10;
i++; // This is called operator overloading.
cout<<10;
		int i=10;
i++; // This is called operator overloading.
cout<<10;
