saurabhnissa Archive

C Program to Check Palindrome number in C
October 1, 2020
No Comments
C Program to Check Palindrome Palindrome:- An integer is a palindrome number if the reverse of that number is equal to the original number. That is called a palindrome number. C Program to Check Palindrome number Palindrome number in c #include <stdio.h> int main() { int n, reversedN = 0, remainder, originalN; printf(“Enter an integer:

Example of Inheritance program in c++ with explanation
October 1, 2020
No Comments
Inheritance program in c++ A simple example of the Inheritance program in c++ with output. And a full explanation of every statement. Example of inheritance program #include <iostream> using namespace std; class BaseClass { int i; public: void setInt(int n); int getInt(); }; class DerivedClass : public BaseClass { int j; public: void setJ(int n);

3 Computer graphics program for a man walking in rain with an umbrella
September 30, 2020
No Comments
Computer graphics program for a man walking in rain with an umbrella computer graphics program for a man walking in rain with an umbrella. learn step by step with a full explanation. Computer graphics C program to show a man walking in rain with an umbrella C program to show a man walking in rain #include<stdio.h>

Computer graphics C program to show a man walking in rain with an umbrella
September 30, 2020
No Comments
C program to show a man walking in rain computer graphics program for a man walking in rain with an umbrella. learn step by step with a full explanation. Computer graphics C program to show a man walking in rain with an umbrella Computer graphics program for a man walking in rain with an umbrella #include<stdio.h> #include<graphics.h>

2 Computer graphics program for a man walking in rain with an umbrella
September 30, 2020
No Comments
Computer graphics program for a man walking in rain with an umbrella computer graphics program for a man walking in rain with an umbrella. learn step by step with a full explanation. Computer graphics C program to show a man walking in rain with an umbrella C program to show a man walking in rain #include<stdio.h>

How to write C Programming code for blinking Text particular on screen
September 29, 2020
No Comments
C Programming code for blinking Text Write a C Programming code for blinking Text particular and continuously on the screen. Learn step by step C program to Blink a Text on screen #include <stdio.h> //to use

Sort Array in ascending order |String and Two dimensional function|
September 29, 2020
No Comments
Array in Ascending Order Write a Program “wap in C” and take Input in Array and Print IT in Ascending Order. Learn step by step Array in ascending order Sort array in ascending order #include<stdio.h> #include<conio.h> void main() { int a[5],j,i,s=0; clrscr(); printf(“\n Enter any element:- “); for(j=0;j<5;j++) { scanf(“%d“, &a[j]); s=s+a[j]; } for(i=0; i<s;

Write a C program to Draw A rainbow using Graphics in C examples PDF
September 28, 2020
No Comments
C program to Draw A rainbow A-C program to Draw a rainbow. This program would only work in the Turbo C compiler in the DOS-compatible machine. The Pdf link is Below the Image. Creating a Rainbow using Graphics Programming in C #include<stdio.h> #include<graphics.h> #include<dos.h> // function for making of rainbow void rainbow() { // auto

Write a simple graphics program to draw a circle in the circle in C using circle function
September 23, 2020
No Comments
Draw a circle in the circle in C Advance Circle Drawing graphics program in C using Circle(); function for Draw a circle in the circle in C. Circle function in C #include<stdio.h> #include<graphics.h> #include<conio.h> int main() { int gd=DETECT,gm; int i,j; initgraph (&gd, &gm, ” “); for ( i=200;i<400;i=i+25) { for( j=200; j<400; j=j+25) {

2d transformation in computer graphics program in C and C++ Animation
September 23, 2020
No Comments
2d transformation in computer graphics program in c 2d transformation in computer graphics program in C and C++ animation program using initgraph(); function Graphics program Graphics program in c #include<stdio.h> #include<graphics.h> #include<conio.h> int main() { int gd=DETECT,gm; int i,j; initgraph (&gd, &gm, ” “); for ( i=200;i<400;i=i+25) { for( j=200; j<400; j=j+25) { circle(i, j,100);