Terminology in C

There are following C-related terms are used below in the Terminology in C topics. Expression An expression is a sequence of operators and operands that does some specific manipulation. It is a combination of variables, constants, and operators written according to the syntax of C language. In C, every expression evaluates to Read more…

Loading

Control Statements in C

Control Statements in C Control statements in C themselves are statements, when they are executed, a control structure controls the execution of other statements: e.g., deciding whether or not to execute some statement; deciding which one of a pair of statements to execute; re-executing a statement, etc. Many control structures Read more…

Loading

Keywords Variables and DataTypes in C

The Keywords, Variables, and DataTypes in C are described below:- Character Set : A character set is a collection of various characters used in the program. The C language character set has alphabets, numbers, and special characters. Every character set contains a distinct code value for each character in the Read more…

Loading

Fundamentals in C

History of Fundamentals in C Fundamentals in C is a basic computer programming language for other languages. C is a programming language developed at AT&T’s Bell Laboratory of USA in 1972. It was designed and written by Dennis Ritchie. Dennis Ritchie inherited the features of B and BCPL programming language Read more…

Loading

Reference Books and Websites in C

List of Reference Books and Websites in C Reference Books in C Slno Name of Books Author Publications 01. The C Programming Language Kernighan & Richie PHI Publications 02. Programming with C Byron Gottfried Schaum Outline, Tata Mc Graw Hill 03. Computer Science A structured programming approach using C Behrouza Read more…

Loading

Difference Between in C

Click this link to see the Difference Between C and C++           Difference between Nested if-else and Switch Case Statement Slno. Nested if-else Statement Switch Case Statement 1. Its execution is depend on the expression value inside the statement. Its execution is determined & controlled by Read more…

Loading

Interview Questions in C

List of Popular Interview Questions in C Ques. : Explain C Programming Language. Ques. : Why is C known as a Mother Language? Ques. : Why is C called a Mid-Level Programming Language? Ques. : Who is the Developer of C language? Ques. : When was the C Language developed? Read more…

Loading

Graphics in C

Introduction of Graphics in C Graphics programming in C typically involves using libraries or APIs that allow us to create graphical applications, render shapes, images, and interact with graphical user interfaces (GUIs).

Loading

File Handling in C

Introduction of File Handling in C When data is stored using variables, the data is lost/disappear when the program exits, unless something is done to save it. Thus, File handling in C supports storing data permanently in the created file. File handling in C is responsible for the creation of Read more…

Loading

Function in C

Definition of Function in C A function in C is a sub-program that has a group of statements/blocks of codes that together perform a specific task. To make programming simple and easy to debug, we break a larger complex program into smaller & simpler sub-programs with a specific name that perform Read more…

Loading