What is Conditional Statement in C programming

C program to check student is pass or fail using if else, nested if and ternary operator.

What is Conditional Statement in C programming Conditional Statement Conditional Statements in C programming are used to make decisions based on the different conditions. Conditional statements execute sequentially when there is no condition around the statements. If you put some condition for a block of statements, the execution flow may change based on the result … Read more

C programming if else statement

C programming if else statement

C programming if else statement Conditional Statements in C programming are used to make decisions based on the conditions. Conditional statements execute sequentially when there is no condition around the statements. If you put some condition for a block of statements, the execution flow may change based on the result evaluated by the condition. This … Read more

Types of instructions in C programming

Types of instruction in C programming

Types of instructions in C programming: C Instructions C instructions are the commands in the program that instructs the compiler to do certain action. Basically it gives the instruction to the compiler on how to achieve the goal of the program. For example, if I want to instruct C compiler to perform multiplication of 2 … Read more

Random Scan Display in Computer Graphics

Random Scan Display in Computer Graphics The original CRT, developed in the late 50’s and early 60’s, created charts and pictures line by line on the tube surface in any (random) order or direction given, in a vectorial fashion. The electron beam was moved along the particular direction and for the particular length of the … Read more

Components Of Computer graphics:

Components Of Computer graphics:

Components Of Computer graphics: Interactive computer graphics consists of three components such as: 1. Digital memory buffer 2. TV Monitor 3. Display controller Using these components, we are able to see the output on the screen in the form of pixels. 1. Digital Memory Buffer (Frame Buffer) This is place where images or pictures are … Read more