Posted inHome how write program to enter a string and find its length in cpp Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about ... Read More Posted by Admin May 7, 2021
Posted inHome Program to enter an integer and output the cube of that integer #include <iostream.h> #include <conio.h> int cube(int x); //The prototype. void main() { clrscr(); int a; ... Read More Posted by Admin May 7, 2021
Posted inHome Program to enter an integer and print out its successor #include <iostream.h> #include <conio.h> void value(int); void main() { clrscr(); int x; cout << “Enter ... Read More Posted by Admin May 7, 2021
Posted inHome Program to enter three integers and output the biggest integer using IF Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about ... Read More Posted by Admin May 7, 2021
Posted inHome Program to change the background colors on the screen #include <conio.h> #include <graphics.h> #include <stdlib.h> #include <stdio.h> void main (int) { int gdriver=DETECT,gmode,errorcode; ... Read More Posted by Admin May 7, 2021
Posted inHome Program to enter three integers and output the biggest integer #include <iostream.h> #include <conio.h> int main() { clrscr(); int x,y,z,biggest; cout << “Enter 3 ... Read More Posted by Admin May 7, 2021
Posted inHome Program to draw 2 rectangles and fill 1 of them in cpp #include <iostream.h> #include <conio.h> #include <graphics.h> #include <ctype.h> #include <stdlib.h> #include <stdio.h> void main() ... Read More Posted by Admin May 7, 2021
Posted inHome Program to change the foreground colors and draw circles on the screen #include <conio.h> #include <graphics.h> #include <stdlib.h> #include <stdio.h> void main (int) { int gdriver=DETECT,gmode,errorcode; ... Read More Posted by Admin May 7, 2021
Posted inHome Program to enter an integer and find out if it is even or odd #include <iostream.h> #include <conio.h> void main() { clrscr(); int x; cout << “Enter an integer ... Read More Posted by Admin May 7, 2021
Posted inHome Program to enter two integers and print the quotient and remainder #include <iostream.h> #include <conio.h> int main() { clrscr(); int x,y,quotient,remainder; cout << “Enter 2 integers ... Read More Posted by Admin May 7, 2021