
What is a Computer Program? - Online Tutorials Library
What is a Computer Program? A computer program is a series or set of instructions in a programming language for a computer to carry out. It is one part of software, which also includes documentation …
C - Program Structure - Online Tutorials Library
The main () Function A C program is a collection of one or more functions. There are two types of functions in a C program: library functions and user-defined functions. There must be at least one …
Computer Programming - Operators
An operator in a programming language is a symbol that tells the compiler or interpreter to perform specific mathematical, relational or logical operation and produce final result. This chapter will …
Computer Programming - Overview
Introduction to Computer Program Before getting into computer programming, let us first understand computer programs and what they do. A computer program is a sequence of instructions written …
C - Operators - Online Tutorials Library
An operator is a symbol that tells the compiler to perform specific mathematical or logical functions. By definition, an operator performs a certain operation on operands. An operator needs one or more …
Computer Programming - Loops - Online Tutorials Library
When the above program is executed, it produces the following result − Hello, World! Hello, World! Hello, World! Hello, World! Hello, World! The above program makes use of a while loop, which is …
C - Hello World - Online Tutorials Library
Every learner aspiring to become a professional software developer starts with writing a Hello World program in the programming language he/she is learning. In this chapter, we shall learn how to write …
C - Environment Setup - Online Tutorials Library
To start learning programming in C, the first step is to setup an environment that allows you to enter and edit the program in C, and a compiler that builds an executable that can run on your operating …
C program to implement CHECKSUM - Online Tutorials Library
What is CHECKSUM? In computing, a checksum is a small-sized data created from a larger data set using an algorithm, with the intention that any changes made to the larger data set will result in a …
How to get the IP Address of local computer using C/C++?
C Code to Get IP Address of Local Computer Here is the following example code to get the Host name and IP address using the C language on a linux system. In this program, we used header files …