Category: Tutorials
The Standard C++ Library
Posted by M. Saqib | Updated Sep 26, 2008 | C++ Programming Tutorials |
The 1998 C++ standard consists of two parts: the core language and the C++ standard library; the latter includes most of the Standard Template Library and a slightly modified version of the C standard library. Many C++ libraries...
Read MoreOperator Overloading in C++
Posted by M. Saqib | Updated May 9, 2021 | C++ Programming Tutorials |
Operator Overloading enables us to make the standard operators, like +, -, * etc, to work with the objects of our own data types or classes. We can write a function which redefines a particular operator so that it performs a specific operation when it is used with the object of a class.
Read MoreConditional Statements – if else, for and while loop in C
Posted by M. Saqib | Updated Jun 23, 2021 | C Programming Tutorials |
C programs are executed in a sequence, but we can control the execution of program by using any control mechanism by which we can compare things and come to a decision. This involves using some operations called Relational Operators, conditional statements called if-else and loops. We have fundamental operators to compare two values.
Read MoreInput and Output in C
Posted by M. Saqib | Updated Jun 29, 2021 | C Programming Tutorials |
The standard way of handling all input and output is done with streams in C programming regardless of where input is coming from or where output is going to. This approach has definite advantages for the programmer. A library package has been evolved which is known as known as the Standard I/O Library which is used in any C program by using stdio.h header. First, however, we need to understand exactly what the terms input and output mean in context of C.
Read MoreFunctions in C Programming
Posted by M. Saqib | Updated Jun 28, 2021 | C Programming Tutorials |
A function is a block of code that has a name and it has a property that it is reusable i.e. it can be executed from as many different points in a C Program as required. Function groups a number of program statements into a unit and gives it a name. This unit can be invoked from other parts of a program. A computer program cannot handle all the tasks by it self. Instead its requests other program like entities – called functions in C – to get its tasks done. A function is a self contained block of statements that perform a coherent task of same kind.
Read MoreRecent Posts
-
How to Create an Online Form Without CodingAug 10, 2022 | Internet
-
The Best Languages for a Cloud DevUpdated Aug 8, 2022 | Blog
-
5 Benefits of Intelligent Document ClassificationUpdated Aug 6, 2022 | Internet
-
A Quick Guide to Cloud-based App DevelopmentUpdated Aug 3, 2022 | Blog
-
5 Things to Know About Outsourcing Business Check Printing and MailingUpdated Jun 10, 2022 | Internet
-
Does public service automation contravene your privacy?Updated May 24, 2022 | Technology
-
5 Ways to Increase Business Efficiency with Workflow AutomationUpdated Apr 29, 2022 | Internet
-
Customer Data Enrichment: How Can It Supercharge Your Business?Updated Mar 25, 2022 | Internet
-
Are Your IoT Devices Secure?Updated Mar 7, 2022 | Technology
-
Benefits of Dynamic ARP Inspection in Enterprise NetworkUpdated Mar 3, 2022 | Blog