C Keywords – Reserved Words
In C, we have 32 keywords, which have their predefined meaning and cannot be used as a variable name. These
Read moreIn C, we have 32 keywords, which have their predefined meaning and cannot be used as a variable name. These
Read moreTraffic light program in c #include<graphics.h> #include<conio.h> #include<dos.h> #include<stdlib.h> main() { int gd = DETECT, gm, midx, midy; initgraph(&gd, &gm,
Read moreIntroduction to Pointers in C Pointer Notation Consider the declaration, int i = 3 ; This declaration tells the C
Read moreWhich of the following shows the correct hierarchy of arithmetic operations in C
Read moreChess Game program in C language #include<stdio.h> #include<conio.h> #include<graphics.h> void blk(int,int); void display(); //enum bool{TRUE,FALSE}; /*void main() //MAIN FUNCTION
Read moreEgg Game Program in C Langauage #include<dos.h> #include<graphics.h> #include<stdio.h> #include<conio.h> #include<process.h> #include<dos.h> #include<stdlib.h> #include<iostream.h> union REGS i,o; main() {
Read moreMoving Car Program in C++ This program is written in C++ using graphics to create and move a car. A
Read moreThis is a simple calculator program written in C Language. It Performs addition, subtraction, multiplication or division depending the input
Read moreThis is a tic-tac-toe game in C Language. You can this as a mini project in C Language.
Read moreThe keyword continue allows us to take up the control to the beginning of the loop, bypassing the statements inside the
Read more