Search the web
Sign In
New User? Sign Up
cprogramming2 · C Programming Turning caffeine into code
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2917 - 2947 of 8327   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2917
Come join our club, we are students from lycee Bilingue, Yaounde. I bet you will have fun. Come hear our stories and tell us your. ...
alys67
Offline
May 1, 2002
3:00 pm
2918
Can i make a calendar in C or is there sth. predefined rdy to use? For example, i would like to know the date(Mon, Tue, Wed, Thur, Fri, Sat, Sun) of my ...
Max Powell
jorge_80832@...
Send Email
May 2, 2002
11:32 pm
2919
This site has a lot of great cards. I was able to get approved in 30 seconds for two different cards. Check it out for yourself. ...
bigbarneyjoe
Offline
May 3, 2002
10:17 am
2920
I got this far, but I know things are out of place and need help assembling it properly. Also, the avg_sales is supposed to be rounded internally instead of...
fcrand27
Offline Send Email
May 4, 2002
11:46 pm
2921
Hello Lory, Try this link: http://www.mysql.com/doc/C/l/Clients.html . It is a complete reference of MySQL APIs for many languages (including C and PHP). Best,...
Ionut Filip
ionut_filip
Offline Send Email
May 5, 2002
8:45 am
2922
Hi everyone, I am trying to put a menu in this program however everytime I run it skips the mainmenu function and runs the getsentence function and its stuck...
rramcharan1
Offline Send Email
May 5, 2002
9:52 am
2923
I've rewritten your program and tested it. It seems to work fine. But I cannot cut and paste it into this reply without losing the formatting (indents, etc.),...
ceedeep99
Offline
May 6, 2002
12:57 am
2924
Hello, I was wondering if anybody could possibly point me in the direction of free Turbo C++ Dos version program. I'm presently at college and one of the...
jamesgirdwood
Offline Send Email
May 6, 2002
5:10 pm
2925
The problem is not with the program u downloaded but with the path settings. There is a menu to tell the compiler where the std include files are placed. once...
ragh_v
Offline
May 6, 2002
7:15 pm
2926
Hi all, I know basically what stacks are... and how they work... but I can't really come up with an example of where/when I would use one. Can anyone shed some...
chris williams
samayel70
Offline Send Email
May 7, 2002
5:40 am
2927
From: ceedeep99 [mailto:no_reply@yahoogroups.com] ... Use spaces, not tabs when posting code to mail lists. This will work with any mail client, even...
Paul Herring
Shabble
Offline Send Email
May 7, 2002
12:30 pm
2928
From: jamesgirdwood [mailto:jamesgirdwood@...] ... For Borland, try <http://courses.yahoo.com/course/c-prog-win-class/files/lesson1.txt> (You'll need...
Paul Herring
Shabble
Offline Send Email
May 7, 2002
12:35 pm
2929
I'm stuck (honestly i do not know where to start), but i want to reproduce Euler's number until the diference between 2 aproximations is less than 10*e-9. e=...
Max Powell
jorge_80832@...
Send Email
May 7, 2002
7:16 pm
2930
First write a program to perform factorial of a number long Factorial(long number) { if(number ==0 || number ==1) return 1; else return (number...
ragh_v
Offline
May 7, 2002
9:44 pm
2931
Try something like this. double precision = 1E-9; double member = 1.0; int count = 1; double sum = 0.0; while(member > precision){ sum += member; count++; ...
lord_kaplan
Offline
May 7, 2002
10:09 pm
2932
hello, can any one help me out in finding the length of an integer array in C. In char array we hav '\0' and end of array. But in integer array we dont have...
dijoy divakaran
dijoyd
Offline Send Email
May 8, 2002
12:10 pm
2933
From: dijoy divakaran [mailto:dijoyd@...] ... You pass it in. Or do something similar to char arrays; i.e. put a marker at the end to signify the end: ...
Paul Herring
Shabble
Offline Send Email
May 8, 2002
12:41 pm
2934
Hi Group Members, I have an intresting problem with reference to structures in C. Is it possible to identify the elements of a structure at runtime? I want...
heyvenki
Offline Send Email
May 9, 2002
8:32 am
2935
From: heyvenki [mailto:heyvenki@...] ... <http://www.eskimo.com/~scs/C-faq/questions.html> Q2.15 -- PJH Your correction is 100% correct and 0% helpful....
Paul Herring
Shabble
Offline Send Email
May 9, 2002
10:24 am
2936
Hi Paul, Thank you very much. ... L & R, ~Venki IT Solutions, +-----------------------------------------------------------+ ... ...
Venki
heyvenki
Offline Send Email
May 9, 2002
6:05 pm
2937
In trying to help with the problem labeled "mainmenu" (#2922) I stumbled over a problem that has bitten me before. It causes the most baffling behaviour, and...
ceedeep99
Offline
May 9, 2002
10:16 pm
2938
hi ceedeep99, that was a nice warning...as we go more deep into programming we may find these kinds of errors..or bugs..which keeps us..is fix..Thanks a lot...
dijoy divakaran
dijoyd
Offline Send Email
May 10, 2002
4:30 am
2940
I'm currently working on finding the max value of a 2 dimension array of integer numbers. The array is for example of 4 row and 5 columns. I know little about ...
Max Powell
jorge_80832@...
Send Email
May 12, 2002
3:04 pm
2941
From: Max Powell [mailto:jorge_80832@...] ... Yup, though I think you could choose a better variable name than just 'M' :) int i, j; for (i=0; i <...
Paul Herring
Shabble
Offline Send Email
May 12, 2002
3:48 pm
2942
void main() { int max=-9999; for(i=0;i<MAX_ROW_SIZE;i++) for(j=0;j<MAX_COL_SIZE;j++) if(a[i][j]>max) { max=a[i][j]; } printf("the maximum value is %d\n",max); ...
ragh_v
Offline
May 12, 2002
3:57 pm
2943
hey folks, i need a c++ program that using a 3x3 2 dimensional array will generate a tic tac toe board with random x's and o's, the pgm will then tell whether...
braveheart_10010
braveheart_1...
Offline Send Email
May 12, 2002
5:15 pm
2944
... In my spare time I've been writing a tic-tac-toe program in which the computer plays opposite the computer user. It contains some pieces you might be able...
ceedeep99
Offline
May 14, 2002
9:12 pm
2945
... You can use the asctime(), getdate(), and setdate() functions defined in time.h to: get and store the current date; set the system date to anything you...
oldcootfromva
Offline
May 15, 2002
1:47 am
2946
Hey all, Got a big ol' question here about COM (hope this is the right group). I am instantiating several classes from a VB DLL in a C++ app. They are used...
ilovecorn
Offline Send Email
May 17, 2002
4:40 pm
2947
I was wondering if anyone could help me out. I am trying to create using dijkstras algorithm a graph that is represented in an adjacency list form and each...
madmanozzyau
Offline
May 19, 2002
12:58 pm
Messages 2917 - 2947 of 8327   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help