C Programming - Engineer Simple

C Programming

Choose the Language

Search This Blog

C Program Learning Part-6

Decision Making and Branching THE SWITCH STATEMENT The general form of the switch statement is as shown below: switch (expression) { case ...

Md. Mahmudun Nabi

C Program Learning Part-5

Decision Making and Branching language possesses the following statements: * statement *switch statement *Conditional statement *g...

Md. Mahmudun Nabi

C Program Learning Part-7

DECISION MAKING AND LOOPING Looping:  In looping a sequence of statements are executed until some conditions for termination of the loop ar...

Md. Mahmudun Nabi

C Program Learning Part-8

DECISION MAKING AND LOOPING   Given a number, write a program using loop to reverse the digits of the number. For example, the number 12...

Md. Mahmudun Nabi

C Program Learning Part-10

Structures and Unions C Structures  Structure is a user-defined data type in C language which allows us to combine data of different types ...

Md. Mahmudun Nabi

C Program Learning Part-9

Character Arrays and Strings Declaration and Initializing String Variables:   C does not support strings as a data type. It allows us t...

Md. Mahmudun Nabi