basics

Mathematic Variables For C Programming – Variables – Learn Basics of C programming – Free Online Studymaterials

Variables In mathematics, variables are used as placeholders for values that aren’t necessarily known. For example, in the equation, x = 3y + 5 the variables x and y represent numbers that can take on a number of different values.Similarly, in a computer program, we also use variables to store values. A variable is essentially […]

basics

Flow Control Of A Computer program Process – Computer Basics study materials

The flow of control (or simply control flow) is how a program processes its instructions.Typically, programs operate in a linear or sequential flow of control. Executable statementsor instructions in a program are performed one after another. In source code, the order that instructions are written defines their order. Just like English, a program is “read” […]

basics

Syntax Rules & Pseudocode

Programming languages are a lot like human languages in that they have syntax rules.These rules dictate the appropriate arrangements of words, punctuation, and other symbols that form valid statements in the language. For example, in many programming languages, commands or statements are terminated by semicolons (just as most sentences are ended with a period). This […]

basics

Basic C Program Structure – C program basic introduction – Free Study Material

Programs start out as source code, a collection of instructions usually written in a high level programming language. A source file containing source code is nothing more than a plain text file that can be edited by any text editor. However, many developers and programmers utilize modern Integrated Development Environment (IDE) that provide a text […]