• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
projectsgeek

ProjectsGeek

Download Mini projects with Source Code, Java projects with Source Codes

  • Home
  • Java Projects
  • C++ Projects
  • VB Projects
  • PHP projects
  • .Net Projects
  • NodeJs Projects
  • Android Projects
    • Project Ideas
      • Final Year Project Ideas
      • JSP Projects
  • Assignment Codes
    • Fundamentals of Programming Language
    • Software Design Laboratory
    • Data Structure and Files Lab
    • Computer Graphics Lab
    • Object Oriented Programming Lab
    • Assembly Codes
  • School Projects
  • Forum

ProjectsGeek

Sum of Numbers Divisible by 4 in C language

July 11, 2013 by ProjectsGeek 2 Comments

Sum of Numbers Divisible by 4 in C language

Write a Sum of Numbers Divisible by 4 in C program to calculate the sum of all numbers from 0 to 100  that are divisible by 4. Program should directly print the Sum of Numbers Divisible by 4 in C.

Sum of Numbers Divisible by 4 Program will simply start with 0 to 100 and check for numbers Divisible by 4.

Sum of Numbers Divisible by 4  C Code

#include<stdio.h>

#include<conio.h>

void main()
{
int i,sum=0;
clrscr();
for(i=0;i<=100;i++)
{
if(i%4==0)                                                              
sum=sum+i;
}

printf(“\naddition of numbers from 0 to 100 that are divisible by 4 is\n%d”,sum);
getch();
}

 Sum of Numbers Divisible by 4 Output Snapshot

 

Sum of Numbers Divisible by 4 in C

 

Other Projects to Try:

  1. Fundamentals of Programming Languages Codes
  2. Assembly Programs
  3. Assembly Language Codes
  4. Display Numbers in Ascending Order C language
  5. Fibonacci numbers program in C Language

Filed Under: Uncategorized

Find triangle is equilateral,isosceles or right angled

July 11, 2013 by ProjectsGeek 1 Comment

Find triangle is equilateral,isosceles or right angled Code in C Language

Write a C program to Find triangle is equilateral,isosceles or right angled by accepting  the length of three sides of a triangle from input and then test and print the type of triangle.

Program will test the type of triangle is equilateral, isosceles, right angled or none of these and print the output to screen.Program will use the basic mathematics formulas of trigonometric to test type of triangle.

Find triangle is equilateral,isosceles or right angled code

#include “stdio.h”
void main()
{
int i, j; 
int temp; 
int sides[3]; 

int type; 
int isRightAngled; 
clrscr();

printf(“Please enter the three sides of triange\n”);

for(i = 0; i < 3; i++)
{
scanf(“%d”, &sides[i]);
}

for(i = 0; i < 3; i++)
{
for(j = i + 1; j < 3; j++)
{

if(sides[i] > sides[j])
{

temp = sides[i];
sides[i] = sides[j];
sides[j] = temp;
}
}
}

type = 3;
isRightAngled = 0;

if(sides[2] > sides[0] + sides[1]) /*check if triangle is valid */
type = 0;
else if(sides[0] == sides[2]) 
type = 1; 
else
{
if(sides[0] == sides[1]) 
type = 2; 

if(sides[2] * sides[2] == sides[0] * sides[0] + sides[1] * sides[1])
isRightAngled = 1;
}

switch(type)
{
case 0:
printf(“The triangle is Invalid\n”);
break;
case 1:
printf(“The triangle is Equilateral Triangle\n”);
break;
case 2:
if(isRightAngled == 1)
printf(“The triangle is Isosceles and Right Angled Triangle\n”);
else
printf(“The triangle is Isosceles Triangle\n”);
break;
case 3:
if(isRightAngled == 1)
printf(“The triangle is Scalene and Right Angled Triangle\n”);
else
printf(“The triangle is Scalene Triangle\n”);
break;

}
getch();
}

 

Other Projects to Try:

  1. Display numbers as English word in C Language
  2. Mobile User Information Project
  3. How to Implement Hash Table using C language
  4. Paging Algorithms using C language OS problem
  5. Operations on matrices like addition, multiplication, saddle point, magic square ,inverse & transpose

Filed Under: Uncategorized

Reverse Digits of Number in C Language

July 11, 2013 by ProjectsGeek Leave a Comment

Reverse Digits of Number in C Language

Write a Reverse Digits of Number in C to reverse the digits of a given integer. User needs to provide the number initially to the program,then program will reverse the digits of number.

Reverse Digits of Number in C Program will divide the number by 10 continuously to get the digits as separate entities. After separating all digits it will rebuild the number by multiplying digits by 10*n to get reverse number.

Reverse Digits of  Number in C Code

#include<stdio.h>
#include<conio.h>
void main()
{
int num,rev=0,dig;
clrscr();
//accept the number to be reversed
printf(“Enter number:\t”);
scanf(“%d”,&num);

while(num>0)
{

dig=num%10; 
rev=(rev*10)+dig; 
num=num/10; 
}

printf(“Reversal of number:=%d “,rev);
getch();
}

 Reverse Digits of Number in C code Output

Reverse Digits of Number in C

Other Projects to Try:

  1. How to Implement Hash Table using C language
  2. Hash table code in C Language
  3. Single Link List code using C Language
  4. Display Numbers in Ascending Order C language
  5. String Operations in C Program

Filed Under: C Codes

Client Server Based Live Meeting project

July 10, 2013 by ProjectsGeek 2 Comments

Client Server Based Live Meeting project

In the Client Server Based Live Meeting project system which we are going to implement the admin user have to just watch his system and communicate with the programmers  and project leaders for maintaining the login,logout time. He can chat about the project going on with both the programmers and project leaders.
 
The admin rule can see and record  the present online system Internet protocol Address and send the messages to single team member ,set of team members, project leader.

The current system is simply a manual system which should be to be converted into automated system for efficient use . Another flaw is Risk of mismanagement of data involved with Less Security and No proper synchronization between different Applications Users while using application. Accuracy not guaranteed in this model or current system.Communication between users through phone or manually is only possible in current system.

The existing Client Server Based Live Meeting project system users are using third party public mail services for communication. Using public domains are not supposed for employee communication.

Anonymous user can be allowed like these public domains. It is critical to share their information like this environment. Some organizations are using manual system. In the manual system the data can be stored and transferred in the form of disk drives or paper. Semi automated systems are connected through LAN but they are using data in local systems like Ms-Access or MS-Excel etc. In local data base there is no Option for data security and data integrity.

Client Server Based Live Meeting project Snapshots

add interest
Live meeting home page
Live meeting add country
Live meeting admin login
add industry
Live meeting add income

Live meeting Project Download

Project Code Download Click Here
Project Report Download  Click Here
Live meeting Project Abstract  Click Here

Other Projects to Try:

  1. MyFriends Meeting System project in Java
  2. Client Server Protocol Project in .Net
  3. Web based Mail Service Client project
  4. SMS Based Remote Server Monitoring System
  5. Client Server Messenger using Java

Filed Under: Uncategorized Tagged With: .Net Projects Download

Cab Service Management mini project

July 10, 2013 by ProjectsGeek 5 Comments

Cab Service Management mini project

Cab Service Management Existing System

Cab Service is an innovative thought to simplify the Transportation problems of Employees of an organization. In the present System, Organization do maintain a person for the allocating and proper functioning of transportation .The Person appointed needs to look after the assigning and movement of cabs.Authorized person maintains the transportation details in papers, which is a tedious task if any updations or changes need to be done.

  • Details are stored in Papers.
  • Maintenance is a huge problem.
  • Updation, changes in details is a tedious task.
  • Performance is not achieved up to the requirements.

Cab Service Management Proposed System

In the Previous Cab Service Management System,Details are Stored Manually in papers,to share the details between employees was a Financial drawback. Updation in the details is a tedious task.

But a new system was proposed to overcome the above drawbacks.

  • Functionality and advantages of proposed system are:
  • Data is Centralized which has overcome the Sharing problem in previous system.
  • data is Maintained electronically, it’s easy for a person to update the details, which has overcome the tedious up dation in previous system.
  • Maintenance is easy and performance is good.
  • Mainly the system has automated the Transportation Process.

Cab Service Management Snapshots 

Cab Service Management home page
Cab Service Management admin page
Cab Service Management hr home page
batch details
Shift timing page

Download Project

Project Code Download Click Here
Project Report Download  Click Here
 Cab Service Management Absract  Click Here

Other Projects to Try:

  1. Task Manager for Corporates mini project
  2. Cab Service mini project in .Net
  3. 100+ .Net mini Projects with Source Code
  4. Courier Management System mini project
  5. Leave Management System mini project

Filed Under: Uncategorized Tagged With: .Net Projects Download

Display numbers as English word in C Language

July 8, 2013 by ProjectsGeek Leave a Comment

Display numbers as English word in C Language

Write a Display numbers as English word program in C to read an integer and display each of the digit of the integer in English.User has to provide a number which will be printed as English word on the screen.

You can take an example of 2345 will be printed as two three four five.

Display numbers as English word in C Code

#include <stdio.h>

void main ()
{
int number, digit1, digit2, digit3, digit4, digit5;
clrscr();
printf(“Enter a number (max 5 digits): “);
scanf(“%i”, &number);

if (number < 100000)
{
digit1 = number % 100000 / 10000;

switch (digit1)
{
case 0 : printf(“Zero “); break;
case 1 : printf(“One “); break;
case 2 : printf(“Two “); break;
case 3 : printf(“Three “); break;
case 4 : printf(“Four “); break;
case 5 : printf(“Five “); break;
case 6 : printf(“Six “); break;
case 7 : printf(“Seven “); break;
case 8 : printf(“Eight “); break;
case 9 : printf(“Nine “); break;
default : printf(“Unknown Interger “); break;
}

digit2 = number % 10000 / 1000;

switch (digit2)
{
case 0 : printf(“Zero “); break;
case 1 : printf(“One “); break;
case 2 : printf(“Two “); break;
case 3 : printf(“Three “); break;
case 4 : printf(“Four “); break;
case 5 : printf(“Five “); break;
case 6 : printf(“Six “); break;
case 7 : printf(“Seven “); break;
case 8 : printf(“Eight “); break;
case 9 : printf(“Nine “); break;
default : printf(“Unknown Interger “); break;
}

digit3 = number % 1000 / 100;

switch (digit3)
{
case 0 : printf(“Zero “); break;
case 1 : printf(“One “); break;
case 2 : printf(“Two “); break;
case 3 : printf(“Three “); break;
case 4 : printf(“Four “); break;
case 5 : printf(“Five “); break;
case 6 : printf(“Six “); break;
case 7 : printf(“Seven “); break;
case 8 : printf(“Eight “); break;
case 9 : printf(“Nine “); break;
default : printf(“Unknown Interger “); break;
}

digit4 = number % 100 / 10;

switch (digit4)
{
case 0 : printf(“Zero “); break;
case 1 : printf(“One “); break;
case 2 : printf(“Two “); break;
case 3 : printf(“Three “); break;
case 4 : printf(“Four “); break;
case 5 : printf(“Five “); break;
case 6 : printf(“Six “); break;
case 7 : printf(“Seven “); break;
case 8 : printf(“Eight “); break;
case 9 : printf(“Nine “); break;
default : printf(“Unknown Interger “); break;
}

digit5 = number % 10;

switch (digit5)
{
case 0 : printf(“Zero “); break;
case 1 : printf(“One “); break;
case 2 : printf(“Two “); break;
case 3 : printf(“Three “); break;
case 4 : printf(“Four “); break;
case 5 : printf(“Five “); break;
case 6 : printf(“Six “); break;
case 7 : printf(“Seven “); break;
case 8 : printf(“Eight “); break;
case 9 : printf(“Nine “); break;
default : printf(“Unknown Interger “); break;
}
}
else
{
printf(“Entered Number is too long.”);
}
getch();
}

 

Other Projects to Try:

  1. How to Implement Hash Table using C language
  2. Matrix operations in c language
  3. Hash table code in C Language
  4. String Operations in C Language
  5. Display Numbers in Ascending Order C language

Filed Under: Uncategorized

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 91
  • Page 92
  • Page 93
  • Page 94
  • Page 95
  • Interim pages omitted …
  • Page 135
  • Go to Next Page »

Primary Sidebar

Tags

.Net Projects Download Android Project Ideas Android Projects Angular 2 Assembly Codes C # Projects C & C++ Projects C++ Projects Class Diagrams Computer Graphics Database Project Data Mining Projects DataScience Projects Datastructure Assignments Download Visual Basic Projects Electronics project Hadoop Projects Installation Guides Internet of Things Project IOS Projects Java Java Interview Questions Java Projects JavaScript JavaScript Projects java tutorial JSON JSP Projects Mechanical Projects Mongodb Networking Projects Node JS Projects OS Problems php Projects Placement Papers Project Ideas Python Projects seminar and presentation Struts

Search this Website


Footer

Download Java Project
Download Visual Basic Projects
Download .Net Projects
Download VB Projects
Download C++ Projects
Download NodeJs Projects
Download School Projects
Download School Projects
Ask Questions - Forum
Latest Projects Ideas
Assembly Codes
Datastructure Assignments
Computer Graphics Lab
Operating system Lab
australia-and-India-flag
  • Home
  • About me
  • Contact Form
  • Submit Your Work
  • Site Map
  • Privacy Policy