I’ve got some questions from C++ and other topics and due to the time constraints I am unable to answer all of them in time. But I will always try to solve as many as possible and keep publishing in this blog. This post is in response to Kigozi Ronald from Makerere University Uganda who [...]
Categorized as :
Arrays Text DSA|
C++|
Questions and Answers|
Source Codes
Are you looking to download the C++ source code of Insertion Sort? Here is the code you can copy and paste on your IDE to run, learn and understand it. I tried to make it as simple as possible to read the code and to grasp the output. You can find the screenshot of the [...]
Categorized as :
Algorithms and Data Structures|
C++|
Examples|
Source Codes
This question was asked in Computer Officer Examination 2010 conducted by Public Service Commission. The question carried 10 mark. Following is the program for this question. I’ve tried to make it simpler and included most essential components only. The program was created using C++ on Visual Studio 2005 with Service Pack 1 on Windows 7 [...]
Categorized as :
C++|
Computer Officer|
Examples|
Practical Questions|
Questions and Answers|
Source Codes
When you need to input numbers and strings you’ll certainly use cin and getline functions in C++. If you are beginning programmer, you must face this weird problem. Look at the code below: #include<iostream> #include<string> using namespace std;
Categorized as :
C++|
Examples|
Trainings and Tutorials
After going through Pointers and Memory eBook on Stanford CS Education Library, I feel it worth going through for you all. The eBook is concise; covering everything is bit greater speed but I hope it is sufficient for you to get started and sharpen your understanding. Now here is another eBook from CS Education Library [...]
Categorized as :
Algorithms and Data Structures|
C++|
Downloads|
List Data Structure Text DSA|
References|
Trainings and Tutorials
Surfing and searching for really useful study materials for computer science students, I ramble here and there, most often. This time I was looking for C++ refreshing courses. There are vast amount of materials, easy enough to tangle your feet, available in Internet for the topic you wish to learn. Mostly the websites of universities [...]
Categorized as :
C++|
Downloads|
References|
Trainings and Tutorials
Though it is simple and really intuitive to align text in center of screen through C++ program, I found many new students are confused and keep looking for any built in function. Thus, here I present the source code of function that will center the text supplied in center of screen (horizontally). function centerText(char* s){ [...]
Categorized as :
C++|
Examples|
Source Codes|
Tutorials & How Tos