Tag Archives: C-Language

What is C?

C is a high-level, general-purpose, procedural computer programming language that was developed in the early 1970s by Dennis Ritchie at Bell Labs. It is one of the most widely used programming languages of all time and is considered the foundation of modern computing. It is used to develop a wide range of applications, including operating systems, device drivers,… Read More »

Introduction to C

C is a high-level, general-purpose programming language that was first developed in the early 1970s. It is one of the most widely used programming languages and has a wide range of applications, including operating systems, embedded systems, game development, and scientific computing. Some key features of C include: Low-level programming – C provides direct access to the hardware… Read More »

Identifier Naming rules in C language

Prerequisite – C Language Introduction In C any name is called identifier. This name can be: 1. Variable name 2. Function name 3. Enum constant name 4. Micro constant name 5. Goto label name And, any other data type name like, 6. Structure 7. Union 8. Enum names or Typedef name These are following rules that should follow:… Read More »

What is stdio.h and why do we use?

stdio.h is a header file in the C Standard Library, which is commonly used in C programming. It stands for “Standard Input/Output Header”. This header file defines a set of functions and macros that provide input and output capabilities for C programs. Some of the most commonly used functions in stdio.h are printf, scanf, fopen, fclose, fread, fwrite,… Read More »