C do…while Loop

Contents (adsbygoogle = window.adsbygoogle || []).push({}); 1 What is do while loop? 2 How does do while loop ... l do while loop as an exit controlled loop. Loading...

Mini project «Library management system» using C – Free Code

The project “Library Management System” is a sample of mini project in C. If you need to create a mini project in C and i ... !!\n"); exit(0); default: printf("Enter either 1 or 2 only\n"); break; } return 0; } Loading…

Mini project «Calendar Application» in C – Free Code Download.

Mini project “Calendar Application” is also a simple project built in C. This project has following features. (ad ... nth[m], y, Week); for(i=0;i;i++)> Loading… (adsbygoogle = window.adsbygoogle || []).push({});

How to make Vertex Table, Edge Table and Surface Table to store geometric information of an object??

Listing the geometric data in three tables provides a convenient reference to the individual components of each object. Al ... ne shared edge. 4.  Every surface is close. (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Sobel and Prewitt edge detector in C++: Image Processing

Sobel and Prewitt are used extensively for detecting edges in image processing. (adsbygoogle = window.adsbygoogle ... Image After applying Sobel Operator (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Mini Project Student Record System in C

Mini project student record system is another project based on programming language C. It also uses files as a database. ... utput of the program:- Loading... (adsbygoogle = window.adsbygoogle || []).push({});   Loading...

Configuring MonoDroid in Visual Studio 2010

In my previous article, I walked through the introduction of MonoDroid and the way to download the free version of MonoDr ... project and see whether there is an error. (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Drawing Straight Line using DDA Algorithm in C/C++

The digital differentia analyzer (DDA) is a scan-conversion line algorithm. In this algorithm, we sample the line at unit ... overcome this limitation of DDA Algorithm, Bresenham discovered Bresenham’s Line Drawing Algorithm. Loading...

3D Rotation Algorithm about arbitrary axis with C/C++ code

When an object is to be rotated about an axis that is not parallel to one of the coordinate axes, we need to perform some ... trix(); showPoint(); return 0; } Loading… (adsbygoogle = window.adsbygoogle || []).push({});

C++ Keywords and Identifiers

Contents (adsbygoogle = window.adsbygoogle || []).push({}); 1 C++ Keywords 2 C++ Identifiers Contents C+ ... Case matters(that is upper case and lower cases). Eg: Area, ARea, area, AREA are the different variables. Loading…

C if…else Statment

C programming deploys If statement for efficient decision making in programs. In this tutorial, you will learn about how If ... number=3 is: Rs 300 Loading...

Extended Euclid’s Algorithm C Code

Before going through this article, please look at my previous article about Euclid’s Algorithm. The Extended Euclid’s algo ... d(a, b); printf("GCD = %d\n", ee.d); printf("x = %d\n", ee.x); printf("y = %d\n", ee.y); return 0; } Loading…

C Code For Solving Modular Linear Equations

The Extended Euclid’s Algorithm solves the equation of the form (adsbygoogle = window.adsbygoogle || []).push({}); ... id(a, n); if (b % ee.d == 0) { x0 = modulo(ee.x * (b/ee.d), n); for (i = 0; i   Loading...

Sorting Java objects based on property

In Java, sorting of group of  primitive type is simple. That is, sorting of group of integers, floats, doubles or strings ... System.out.println(person.name); } } } Loading… (adsbygoogle = window.adsbygoogle || []).push({});

Minor project: Cyber Management System using C

(adsbygoogle = window.adsbygoogle || []).push({}); C.yber is a program which interconnects different computers ... gle || []).push({}); Block Diagram:   (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

Mini project «Quiz (Who will be the millionaire)» Using C/C++ – Free download

Mini project “Quiz” is a simple project made using C. It is most useful for those who are new to C and don’t know how to ... shots of the project are given below: (adsbygoogle = window.adsbygoogle || []).push({});   Loading…

GLUT Tutorial – Handling Keyboard Events

Almost all of the games use Keyboard to control the objects i.e. to move, jump, turn, slide etc.  Keyboard events is esse ... ion key GLUT_KEY_INSERT Insert function key (adsbygoogle = window.adsbygoogle || []).push({}); Loading…

GLUT Tutorial: 2D Animation

This is the second tutorial on GLUT. In this tutorial, I am going to show you how to do a 2D animation in GLUT. There are v ... c(handleKeypress); glutReshapeFunc(handleResize); glutTimerFunc(25,update,0); glutMainLoop(); return 0; } Loading…

Python Statements and Comments

Contents Statements in Python are the block of codes. The instructions that a Python interpreter can execute are called th ... s and return the sum""" return num1 + num2 Loading… (adsbygoogle = window.adsbygoogle || []).push({});

Python Datatypes

In any programming language, a variable can hold different types of data. As Python is a dynamically typed language, we do n ... of type",type(a)) x = 3 + 5j print(x, "is of type",type(x)) Output:- 200 is of type (3+5j) is of type Loading…