Posted inC Programming C – Error Handling Posted by admin August 13, 2021 As such, C programming does not provide direct support for error handling but being a…
Posted inC Programming C – Type Casting Posted by admin August 13, 2021 Type casting is a way to convert a variable from one data type to another…
Posted inC Programming C – Header Files Posted by admin August 13, 2021 A header file is a file with extension .h which contains C function declarations and macro definitions…
Posted inC Programming C – Preprocessors Posted by admin August 13, 2021 The C Preprocessor is not a part of the compiler, but is a separate step in the…
Posted inC Programming C – File I/O Posted by admin August 13, 2021 The last chapter explained the standard input and output devices handled by C programming language.…
Posted inC Programming C – Input & Output Posted by admin August 13, 2021 When we say Input, it means to feed some data into a program. An input can…
Posted inC Programming C – typedef Posted by admin August 13, 2021 The C programming language provides a keyword called typedef, which you can use to give a…
Posted inC Programming C – Bit Fields Posted by admin August 13, 2021 Suppose your C program contains a number of TRUE/FALSE variables grouped in a structure called…
Posted inC Programming C – Unions Posted by admin August 13, 2021 A union is a special data type available in C that allows to store different data types…
Posted inC Programming C – Structures Posted by admin August 13, 2021 Arrays allow to define type of variables that can hold several data items of the…