We have seen how to create variables – integer, float, or character types, each variable is given a unique name and you can store one item under that name. Often, however, we need several similar items to be grouped under a single name. For example, marks scored by a student in different subjects, the salaries […]
C
Control Structures of C – for, while and do loops, if then else statements, switch statements
Here we learn about the control structures of C. The compiler normally takes the program line by line and executes them in a sequence ( one after another ). But this may not always be the case. Based on certain conditions existing in the data, we may want to change the data – Then we […]
Fundamentals of C Variables, data types, arithmetic expressions and Library functions
C has evolved from a succession of programming languages developed by Bell Laboratories in the early 1970s. The increasing popularity of the unix operating system, which has C as its “Standard” programming language, further enhanced the usefulness of C making it arguably the most popular of the programming languages. We now start with the fundamentals […]