132,722 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for abhishekvarmag

Calendar Program [code]#include<conio.h> int day(int m1,int y1) { int d; if(m1==1 || m1==3 || m1==5 || m1==7 || m1==8 || m1==10 || m1==12) d=31; else if(m1==4 || m1==6 || m1==9 || m1==11) d=30; else if((y1%100!=0 && y1%4==0) || y1%400==0) d=29; else d=28; return d; } void main() { long unsigned …

Software Development c
Member Avatar for Aia
-3
792
Member Avatar for jez23

could you please give me code in c programming of a hangman game, a converter or a phonebook??? pleaseee.... badly needed it.. dont have enough time to do it.. please...

Software Development vb.net
Member Avatar for abhay1234
-3
315
Member Avatar for Ultratermi

Hey, can someone tell me where I have to start? I wanna make a program like cheat engine but I have no clue how :o... Im [B]not[/B] a beginner ( but also not an expert :P ) in C++(/CLI)... What functions do I need? etc. :p Thx ;D

Software Development c++
Member Avatar for Ultratermi
-3
567
Member Avatar for HBK_100

[CODE]#include <conio.h> #include <stdio.h> #include <windows.h> #include <string.h> #include <stdlib.h> void display(void); void menu(void); void dinfo(void); int main() { char username[9],username1[9]; char password [5],pass[5]; int y=1; strcpy(username1,"udental"); strcpy(password,"1987"); display(); do { printf("\n\n\n\n\n\n\t\t\tPlease enter your username:"); scanf("%s",username); //Right here i want to print out **** printf("\n\n\n\n\n\t\t\tPlease enter your password:"); scanf("%s",pass); if …

Software Development c
Member Avatar for Ancient Dragon
-3
854
Member Avatar for mushroozard

Hello guys i was wondering if someone could please post me a full FTP or SMTP uploading source code in C++ with all i need to #include.I just need a simple code to upload a file to my ftp server or send it to my mail.I searched the whole place …

Software Development c++
Member Avatar for Fbody
-3
252
Member Avatar for aya_brea

Iam a freshmen and we're given a task to program a calendar using turbo C and does'nt exceed line 54 and some texts are with specific colors.(red) for the days under sunday,(light gray)for the month.... I will really appreciate your help thanks....... Here's the format: ex: enter month:1 january 2004 …

Software Development c
Member Avatar for peter_budo
-3
2K
Member Avatar for misfits86

Input a list of positive numbers, terminated by 0, into an array Numbers. Then, display the array and the largest and smallest number in it. Process, Input, Output information with variable names and type and complete pseudo code of the program (with declaration of variables, calling of modules, any modules, …

Software Development
Member Avatar for Geekitygeek
-3
662
Member Avatar for ishaiman

hi, I have this assignment can anyone solve it? THe programme statement is Problem Statement: Suppose we have a class named as Train it has two constructors, two methods, and a single attribute each of which described as follows:· One attribute:maxSpeed – an int value representing the maximum speed of …

Software Development c++
Member Avatar for sidra 100
-3
301
Member Avatar for belle phoenix

[code] #include <iostream> #include <fstream> #include <cstdlib> // to clear the screen #include <cmath> #include <string> using namespace std; #ifndef NULL #define NULL 0 #endif int MAX_FLOOR=10; struct passenger { int id,waitingtime,timestamp; float source,destination; passenger * next; }; struct node /*this is the linked list that contains source and destination …

Software Development c++ ios linked-list
Member Avatar for Agni
-3
322
Member Avatar for xavier666

The program generates a calendar for one year. The program only asks for the day on which 1st January falls from user. Notes : [LIST] [*]Compiler - Turbo C++ 4.5 [*]Leap year has been considered [*]The only reason for including [icode]conio.h[/icode] is because of [icode]clrscr()[/icode]. If somebody can give me …

Software Development c
Member Avatar for binkiwinki
-3
375
Member Avatar for jezareal

Hi. im just quite new to c program and i need help on who can give me the source code. This is about Interval search method or OSM in numerical method analysis. The program should solve a given equation f(x) example: f(x)= x^2+2x+3 Given the function f(x)=0 (this would be …

Software Development c
Member Avatar for Dave Sinkula
-3
259
Member Avatar for qq263020776

A building has three elevators, 16-storey level. Write a program to simulate the operation of elevators. Requirements: 1. At the highest level can only be a downward trend, the lowest level can only be upward, the middle layer can be by any upward and downward; 2. Each layer is only …

Software Development python
Member Avatar for vegaseat
-3
1K
Member Avatar for Musafir

I need to make a score table function which keeps a track of the points. the first player to reach 11 points wins, however the game must be won by aleast a 2 point margin. the players points should be displayed on two halves of the graphic window. for example: …

Software Development python
Member Avatar for vegaseat
-3
282
Member Avatar for Noopur7

Sort a book list in a library based on the discipline USING C ++ programming?

Software Development c++
Member Avatar for gaurav sinha
-3
313
Member Avatar for rhenerlau

This code is to split a Microsoft Access database and re-connect it on launch so that you can use Access on a multi user network...After Splitting the database manually, place the following code in the form that launches when the database is launched...

Software Development microsoft-access visual-basic
Member Avatar for azadohy
-3
256
Member Avatar for srmcsclab

// try out //Program - 5.4 # include <iostream.h> # include <conio.h> void main ( ) { int x[5] = {1,2,3,4,5}, y [5] = {5,4,3,2,1}, result [5] = { 0,0,0,0,0 }; int i= 0; while (i++ < 5) result [i] = x [i] - y [i]; clrscr ( ); cout …

Software Development c c# c++
Member Avatar for tomtetlaw
-3
294
Member Avatar for adhruv92

I have a huge amount of home work that my c++ teacher gave me at school, can you do that questions while i have to study chem and phy and maths for the exams. just post the answers. i have attached the questions. thanks

Software Development c++
Member Avatar for triumphost
-3
384
Member Avatar for raneen

i have an assignment a bout TicTacToe game i need its code in java language its functions are draw_board play_turn set_square check_end check_line please i need it now

Software Development java
Member Avatar for ejosiah
-3
263
Member Avatar for its.romi

Added just to help other.... [code=c] #include<stdio.h> #include<conio.h> #include<stdlib.h> #define Operator 1 #define notOperator 0 #define empty -1 void formatting(void); void getInput(void); int chkElement(char); void opFunc(char); void varFunc(char); void push(struct node*); struct node* pop(void); void dispTree(void); void infix(struct node*); void prefix(struct node*); void postfix(struct node*); char equation[25]; struct node* stack[25]; …

Software Development c
Member Avatar for chat2fanna
-3
316
Member Avatar for xfreebornx

i created a delete function to check for similar user id and delete one but it can seems to work, so i need your help please.. [CODE]#include<iostream> #include<algorithm> //for std::sort #include<string> using namespace std; struct student { int id; string name; string nationality; string gender; }; void insert(student array[],const unsigned …

Software Development algorithm c++
Member Avatar for xfreebornx
-3
453
Member Avatar for swappy

Hello guys I asked to make a library management project in the college...last year project many over here would might know... I just wanted to ask you guys how should I proceed with this thing..

Software Development vb.net
Member Avatar for ithelp
-3
496
Member Avatar for geetajlo

Hi i really need code to back up an access database. Am using visual studio 2005. i have to submit my project next week.. please help me. I want to place the code in a button back up..

Software Development vb.net visual-studio
Member Avatar for Jx_Man
-3
597
Member Avatar for boyz

Herbert Schildt in The Complete Reference Java 2 says,"Because it is static, it must access the members of its enclosing class through an object. That is, it cannot refer to members of its enclosing class directly. Because of this restriction, static nested classes are seldom used." Can we use static …

Software Development java
Member Avatar for Ancient Dragon
-3
288
Member Avatar for eazy_man

Hi Guys Im looking for someone who can translate this c++ code to pseudocode . [CODE]#include <algorithm> #include <cctype> #include <functional> #include <string> bool palindrome( unsigned long n ) { unsigned long x = n; unsigned long u = 0; while (x) { u *= 10; u += x % …

Software Development algorithm c++
Member Avatar for Koushik_3
-4
17K
Member Avatar for rajesanthu

[B][COLOR="Red"]Simple C++ program for age calculation[/COLOR][/B] [COLOR="Green"][B]NB:Excuse me experts,,this is only for beginners.........[/B][/COLOR] Instructions//// 1.Copy the code 2.paste it in a text file 3.save the text file as agecalc.cpp and select file type all with in the text file. 4.paste this file inside your bin folder where the Turbo C …

Software Development c c# c++
Member Avatar for Youssef Faisal
-4
44K
Member Avatar for macroasm

Visual Tkinter is Python 2.6 GUI builder. Visual Python programming language for advanced Visual Python IDE that offers the possibility. As of December 2008 starting and writing fasting Editor. This software is using Scintilla editing component. <URL SNIPPED>

Software Development gui ide python tkinter
Member Avatar for Titus_1
-4
2K
Member Avatar for prakash2813

Hello everyone. I have been trying to get desired output since last 4 days and so far very near to it. I am really stucked in the logic. Please help me or help me in writing proper logic. Open the attached zip file for whole eclipse project. No need to …

Software Development ide java
Member Avatar for jwenting
-4
454
Member Avatar for mrismich
Member Avatar for Raj chanda
-4
1K
Member Avatar for Niloofar24

Hello everybody. I'm looking for a good cool and fun DDOS script in python. Any suggestion? How can I create a good fun DDOS script using URLLIB?!

Software Development python
Member Avatar for Niloofar24
-4
538
Member Avatar for taekgo

Can someone help me with the codes in C language.this is the problem: create a program that will display the factors of a given number.the input must read from a text file and consist of one or more lines,each line contains a number. Sample input from a text file: 6 …

Software Development c display
Member Avatar for v.r.t
-4
2K
Member Avatar for james.lu.75491856

THIS IS DANGEROOUS CODE, if it fails, it may prevent yu frome editing it. also, you can use the functions to do crazy stuff. Look at [this refrence](http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx) and change the `0x12` to what you want. (This one hold alt, so typing r will actibvate the menu that starts with …

Software Development python
Member Avatar for sneekula
-4
363
Member Avatar for rajesanthu

[B]Simple C++ program for billing[/B] NB:Excuse me experts,,,,,This is only for beginners 1.copy and paste the program in a notepad 2.save the textfile with .cpp extension 3.select file type all 4.cut the textfile and paste it in your bin folder where turbo c is located 5.open turbo c and open …

Software Development c++
Member Avatar for Monu_1
-4
10K
Member Avatar for breakingthekonkrete

Write a Java program to do the following: A dairy farm sells organic brown eggs to local customers. They charge $3.25 for a dozen eggs, or 45 cents for individual eggs that are not part of a dozen. Write, compile, and test a Java class that prompts a user for …

Software Development java
Member Avatar for peter_budo
-4
317
Member Avatar for kisseric

I am doing something wrong, I have tried for two days and I still cannot figure it out. Can someone help me? Thank you. [code] #include <iostream> #include <iomanip> #include <cmath> using namespace std; void instructUser(); double doDivideZero(double &); int main() { instructUser(); double displayedVal; double newEntry; char command_character ; …

Software Development c c# c++
Member Avatar for manujkathuria
-4
1K
Member Avatar for lxXTaCoXxl

These are just some of the more useful #define statements I've used in C++. These are some of the statements you'll use the most (in the case of template<typename T> when you use it, you use it a lot!). So I figured I'd post it for others, even though a …

Software Development c++
Member Avatar for sepp2k
-4
271
Member Avatar for akhlakeng

Write a program to calculate the power consumed by a heater. This program also calculates the resistance value for the heater. The program’s design should use main that calls the three functions described below: a) getData : Read data from the keyboard. This function is to use reference parameters (pass-by-reference …

Software Development c++
Member Avatar for akhlakeng
-4
356
Member Avatar for niyasc

Source code implemented by [B]Niyas C S2C PPMHSS Kottukkara Kondotty Malappuram Kerala St India[/B]

Software Development c++
Member Avatar for ziyadgodil
-4
10K
Member Avatar for bobytch

Hello everyone ok straight to the point i have to do this a text or a word that is blinking and have color and while it is blinking it is automatically changing its color i know how to do a text with color and blinking but i don't know how …

Software Development c++
Member Avatar for Ancient Dragon
-4
3K
Member Avatar for Sherry.K

Suppose your $1,000 is earning interest at 4% per year. How many years you need to double your money? Write a program to calculate the number of years!

Software Development c++
Member Avatar for VernonDozier
-4
599
Member Avatar for kirankumargali

ITU wants you write some classes for their Personnel Record System. To make it simple, consider only 4 classes: Person, Employee, Instructor and Student. The following figure illustrates the relationship between these 4 classes. The Person class is the parent class of the Employee class and the Student class. The …

Software Development java
Member Avatar for javaAddict
-4
538
Member Avatar for Rick.238

How Can I make a multiplication table from 1 to 12 in java?

Software Development java
Member Avatar for jon.kiparsky
-4
255
Member Avatar for ellenski

My program is a very simple address book program. The program works but i don't know how to make it display the same names. Like for example, the name "Mark Lee", if there are more than one Mark Lee, i would like to display all of those Mark Lee w/ …

Software Development c
Member Avatar for kvprajapati
-4
298
Member Avatar for albanosali

please halp me!!!!! do do this program..... <EMAIL SNIPPED> /// To write a C language program that implements the main functions of maintenance of student information. To maintain student information must be used on a list of njedrejtimore. Each node of the list will be used to store the data …

Software Development c++
Member Avatar for albanosali
-4
339
Member Avatar for docesam

python is not a new programming language ,it has been there for the last .... 15+ years or so ? right ? now , by having a look at this page [url]http://wiki.python.org/moin/Applications[/url] i can see only few programs written in python .i tried some of the programs in that list …

Software Development gui python
Member Avatar for TrustyTony
-4
329
Member Avatar for kunal_00731

How to start a new thread?Sorry am a new bee here.

Software Development python
Member Avatar for vegaseat
-4
316
Member Avatar for john2oth

On the Unix machines,there is a file /usr/dict/words that contains a list of English words,one per line.This file is used by spell-checking programs for example. Write a python function which takes one argument,which is a word (as a string)and returns true if the word contains alternating vowels and consonants (i.e …

Software Development python unix
Member Avatar for Gribouillis
-4
322
Member Avatar for Conqueror07

1. When we create a text file by C by program copying it from other file the how can we change the path (by default its saved in BIN folder)? 2. How do we run other applications using C language (suppose Windows Media Player or HTML)? Thank You

Software Development c
Member Avatar for Ancient Dragon
-4
270
Member Avatar for maiar

Hi how are you i needyour help pleasE i wanted to do this programme with C++ languge by visual C++ Hotel Reservation System – HRS In this project you have to design and implement an HRS that can be used by a small hotel. Your program should provide the following …

Software Development c++
Member Avatar for tkud
-4
291
Member Avatar for vmanojnair

Hi , I am doing BE Electronics in Erode. Its my 7th Semester. I would like to do one mini project in C. So please suggest a good topic or please suggest some sites, where i get more information regarding the mini project. Thank you very much Manoj V

Software Development c++
Member Avatar for peter_budo
-4
675
Member Avatar for aksn315

welcome .... I'm starting learn java langauge , it is very intresting langauge .... I have this problem and I need your help... (( [COLOR="Green"]Write a java applet that will animate an analogue clock. The clock should look like the one shown in Figure 1. The background color of the …

Software Development java
Member Avatar for jasimp
-4
305

The End.