Top Menu

Sports

Facebook

Search This Blog

Comments

recentcomments

sponsor

Featured Posts

Recent Posts

Recent in Sports

Basic Building Blocks Of The C Programming | WaoFamHub

March 18, 2020 0
Basic Building Blocks Of The C Programming You have seen the basic structure of a C program, so it will be easy to understand other basic bu...

Hello World Example In C Programming | WaoFamHub

March 18, 2020 0
Hello World Example A C program basically consists of the following parts − Preprocessor Commands Functions Variables Statements & Expre...

Applications Of C Programming | Audience & Prerequisites | WaoFamHub

March 18, 2020 0
Applications of C Programming C was initially used for system development work, particularly the programs that make-up the operating system....

What Is C Programming? | Why To Learn C Programming | WaoFamHub

March 18, 2020 0
What Is C Programming C programming is a general-purpose, procedural, imperative computer programming language developed in 1972 by Dennis M...

Draw The Moving Car On The Screen Program In C | WaoFamHub

March 15, 2020 0
The Moving Car Program In C  INPUT #include <stdio.h> #include <graphics.h> #include <conio.h> #include <dos.h> int ...

Develop The Program For The DDA Line Drawing Algorithm In C | WaoFamHub

March 15, 2020 0
The DDA Line Drawing Algorithm  INPUT #include <graphics.h> #include <stdio.h> #include <math.h> #include <dos.h> vo...

Bresenham’s Line Drawing Algorithm Program In C | WaoFamHub

March 15, 2020 0
Bresenham’s Line Drawing Algorithm Program In C INPUT #include<stdio.h> #include<graphics.h> void drawline(int x0, int y0, int x...

Create House Like Structure Perform Operations Program In C | WaoFamHub

March 15, 2020 0
Program to create a house like figure and perform the following operations.  Scaling about the origin followed by translation.  Scaling with...

Perform 2D Rotation On A Given Object Program In C | WaoFamHub

March 15, 2020 0
2D Rotation On A Given Object Program INPUT #include<stdio.h> #include<graphics.h> void main() { int gd=DETECT,gm; initgraph(...

Perform Smiling Face Animation Using Graphic Functions Program In C | WaoFamHub

March 15, 2020 0
Smiling Face Animation Program INPUT #include<graphics.h> #include<conio.h> #include<stdlib.h> main() { int gd = DETECT, g...

Draw A Simple Hut On The Screen Program In C | WaoFamHub

March 15, 2020 0
A Simple Hut On The Screen INPUT #include<graphics.h> #include<conio.h> int main(){ int gd = DETECT,gm; initgraph(&gd, &...

Write A Program To Fill A Circle Using Flood Fill Algorithm | WaoFamHub

March 15, 2020 0
Fill A Circle Using Flood Fill Algorithm INPUT #include<stdio.h> #include<conio.h> #include<graphics.h> void floodFill(int...

Write A Program To Implement Liang - Barsky Line Clipping Algorithm | WaoFamHub

March 15, 2020 0
Write A Program To Implement Liang - Barsky Line Clipping Algorithm INPUT #include<stdio.h> #include<graphics.h> #include<mat...

Draw The Walking Man On The Screen Program In C | BGI | WaoFamHub

March 15, 2020 0
Draw The Walking Man On The Screen Program In C INPUT #include<stdio.h> #include<graphics.h> #define ScreenWidth getmaxx() #defi...

Drawing Different Shapes Program In C | BGI | WaoFamHub

March 15, 2020 0
Drawing Different Shapes Program In C INPUT #include<graphics.h> #include<conio.h> main() {    int gd = DETECT,gm,left=100,top=1...

Moving Fish Program In C| BGI | WaoFamHub

March 15, 2020 0
Moving Fish Program In C IINPUT #include<stdlib.h> #include<conio.h> #include<dos.h> #include<graphics.h> #include...

Python Turtle Python Logo Program | Turtle | WaoFamHub

March 15, 2020 0
Turtle Python Logo Program INPUT import turtle l1 = [[0.0, -238.0], [92.6, -219.3], [168.3, -168.3], [219.3, -92.6], [238.0, 0.0], [219.3, 9...

Python TKinter Theme Program | TKinter | WaoFamHub

March 15, 2020 0
Python TKinter Theme Program | TKinter | WaoFamHub INPUT from tkinter import Tk, Label, Button, Entry, X import tkinter from tkinter import ...

Python TKinter Text Editor Program | TKinter | WaoFamHub

March 15, 2020 0
Python TKinter Text Editor Program INPUT from tkinter import * from tkinter.filedialog import * from tkinter.messagebox import * from tkinte...

Python Simple Calculator Program | TKinter Calculator Program | WaoFamHub

March 15, 2020 0
Python Simple Calculator Program With TKinter Calculator INPUT from tkinter import Tk, Label, Button, Entry class Root(Tk):     def __init__...

Write a java program for multiplying two matrices and print the product for the same | WaoFamHub

March 14, 2020 0
Two matrices and print the product for the same. INPUT public class Matrix1{  public static void main(String args[]){    int a[][]={{1,1,1},...

Write a java program to add two matrices and print the resultant matrix | WaoFamHub

March 14, 2020 0
Add two matrices and print the resultant matrix. INPUT public class Matrix{ public static void main(String args[]){  int a[][]={{1,3,4},{2,4...

Write a java program to implement multiple inheritance | WaoFamHub

March 13, 2020 0
Multiple Inheritance. INPUT interface Car {     int speed=60;     public void distanceTravelled(); } interface Bus {     int distance=100; ...

Write a java program to implement method overriding | WaoFamHub

March 13, 2020 0
Method Overriding INPUT class Human{      public void eat()    {       System.out.println("Human is eating");    } } class Boy ext...

Write a java program to implement single level inheritance. | WaoFamHub

March 13, 2020 0
Single Level Inheritance.  INPUT class Single{  static int num1=10;  static int num2=5; } class Main extends Single{  public static void mai...
Copyright © TheWhiCro. Designed by OddThemes