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@...
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. ...
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...
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,...
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...
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.),...
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...
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...
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...
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...
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@...
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...
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...
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: ...
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...
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...
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...
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@...
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 <...
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); ...
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...
... 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...
... 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...
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...
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...