Loops While Loop goddem 1:24:00 AM 0 while loop The while loop calculates the expression before every loop. If the expression is true then block of statements is executed, so i... NEXT >>
Conditional Selection Switch goddem 1:17:00 AM 0 switch() A switch statement is used instead of nested if...else statements. It is multiple branch decision statement of C. A switch stateme... NEXT >>
Conditional Branching IF goddem 12:53:00 AM 0 5.1.1 if statement An if statement contains a Boolean expression and block of statements enclosed within braces. Structure of if statement... NEXT >>
Character IO goddem 12:49:00 AM 0 getchar and putchar are used for the input or output only one character. getchar() It returns an int which is either EOF(indicating end-of... NEXT >>
Formatted IO goddem 12:35:00 AM 0 4.1.1 Formatted Output - printf It takes text and values from within the program and sends it out onto the screen. printf(''%f is ... NEXT >>
operators goddem 12:35:00 AM 0 An operator is a symbol. Compiler identifies Operator and performs specific mathematical or logical operation. C provides following operator... NEXT >>
Variables goddem 12:35:00 AM 0 3.1.1 Variable Declaration Usually Variables are declared before use either at the start of a block of code after the opening { and befor... NEXT >>
Structure of Program goddem 12:34:00 AM 0 /* This program prints Hello World on screen */ ----------------------------- #include Void main() { printf(''Hello World\n'... NEXT >>
Advantage of C goddem 12:27:00 AM 1 - Fast, Powerful & efficient - Easy to learn. - It is portable - ''Mid-level'' Language - Widely accepted language - Sup... NEXT >>
Introduction goddem 12:22:00 AM 0 The C programming language is a general-purpose, high-level language (generally denoted as structured language). C programming language wa... NEXT >>