Goto Statement In CPP
Goto statement is also known as Jump statement. It directly jumps to the specified label. It is also used to move the control to the other part of the program.…
Goto statement is also known as Jump statement. It directly jumps to the specified label. It is also used to move the control to the other part of the program.…
A simple CPP Program for matrix multiplication. Matrix 1- 1 2 3 4 5 6 …
Admission form using Graphics Form designing using C++ Graphics. #include<iostream.h> #include<graphics.h> #include<conio.h> void main() { int driver,mode; driver=DETECT; initgraph (&driver,&mode,””); moveto(250,2); settextstyle(1,HORIZ_DIR,4); outtext(“B A B A”); line(205,38,420,38); moveto(200,40); settextstyle(1,HORIZ_DIR,2); outtext(“COMPUTER…
An operator is a symbol which is used to perform some operation on variables, operands and with the constant. Types of Operators: Arithmetic Operator Assignment Operator Increment Operator Decrement Operator…
In inline function, the whole function is called to the calling function directly. If there is more task then the speed is slow. Inline keyword is used in front of…
The structure is a group of the different data type. #include<iostream.h> #include<conio.h> struct student // it will create a new data type. { int rollno; char name[10]; // student is…