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

Structure and Union in C

Structure in C Definition Structure and Union in C is a data structures/variables that store large no. of data items in contiguous memory locations whose individual elements may differ in their datatypes. A structure is a user-defined data type available in C that allows to combining of data items of different kinds. A structure Read more…

Loading

Pointer in C

Introduction of Pointer in C when we declare a variable of any datatype in our program, we refer to that location in memory by a certain name but at the machine level, that location has a memory address, which is used by the OS during the processing. This is done Read more…

Loading

Non-String Function Examples

Example : A Non-String Function Examples or program in C to find the length of a character in a given string without using the string function. Example : A program in C to display the respective ASCII value of a given character. Example : A program in C to display Read more…

Loading

One-Dimensional Array Examples

One-Dimensional Array Examples Example : A One-dimensional Array Examples or program in C to create an array to store ten static values given by the programmer & display them. Example : A C program to create an array to read & display the values in one-dimensional array. Example : Write Read more…

Loading