Programming in C

Programming in C
C Programming Language
- C is the structured programming language. It uses structured statements such as while for,...}

Programming in C
Character Set of C Programming Language
- The C character set consists of upper and lowercase alphabets, digits, special characters a...}

Programming in C
Displaying Variables
- The output of the program is 10. The variable num is defined before it is used. A value 10...}

Programming in C
Library Functions
- A library function is accessed simply by writing the function name, followed by a list of a...}

Programming in C
Control Structures
- Branching is carried out after the selection of a choice.
- The logical expression,...}

Programming in C
The Switch Statement
- The switch statement is useful when a variable is too compared with different constants, an...}

Programming in C
Looping with do…while Statement
- The do..while loop evaluates the condition after the execution of the statements in its con...}

Programming in C
Function Definition
- The function prototype is the outline of a general function.
- A variable explicitly...}

Programming in C
Array and Strings
- The individual data items can be characters, integers, floating point numbers, etc. However...}

Programming in C
Two Dimensional Arrays
- An array holds elements that have the same data type, array elements are stor...}

Programming in C
Array with Function
- The array can be passed as arguments to functions. An array can be passed as an argument fr...}

Programming in C
String Manipulating Functions
- The handling of string is totally different from handling the numbers. Some of the importan...}

Programming in C
Dereferencing Pointers
- Dereferencing is an operation performed to access and manipulate data obtained in the memor...}