Menu Close

Data Types in C Program

C language is a statically-typed programming language, so the variable type must be declared before use. C provides several basic data types, including integer types,…

printf( ) function in C Program

1. printf( ) function In C programming, printf() is one of the main output function. The function sends formatted output to the screen. The “f” in printf…

A Placeholder in C Program

In C language, a placeholder refers to a special symbol used in formatting output functions to indicate the type and format of the data that…

Escape Sequences in C

An escape sequence is a combination of characters that represents a special character, which cannot be represented directly in a string or character literal. In…

Tokens in C Program Language

A token is the smallest element of a program that is meaningful to the compiler. We can define a token as the smallest individual element…

C Program Exercises

C Program Exercises Write a C Program to Check if a Given Number is a Palindrome or not Print a Canada Map in C Program

Canada Map

Print a Canada Map in C Program

Here’s an example code to print a basic map of Canada using ASCII characters in C:   This will output a simple map of Canada…

Identifiers in C Program Language

C identifiers are names used in a C program, such as variables, functions, arrays, structures, unions, labels, etc. Identifiers can be composed of letters, including…

the comment symbols inside the double quotes

Basic Syntax of C Program Language

The Basic Syntax of C we will study includes: Semicolon(;)  and Whitespace Keywords Tokens Identifier Comments Header Files 1.Semicolon(;)  and Whitespace 1.1 Statement The code…

The C Program for calculating the Area of Triangle

The Program Structure of C Language

Before learning about the program structure of C language, let’s first take a look at a simple program. Input the three sides of a triangle…

How Does Preprocessor Work in C ?

Preprocessor occurs prior to the formal compilation stage.  In simple terms, a C Preprocessor is just a text substitution tool and it instructs the compiler…

How to Run C Program in Code Block ?

Let’s run Hello World program in Code Block open your Code::Block application 1. Create a New Project 2. Choose “Console Application”  – Go 3. Console…