Hi, guys. I am trying to find Olympus Optical Disk (model MOS332S)driver to be used for WinXP. Don't know whether it exist or not as it is quite an old drive already (around 1997).
Have tried to find the driver at www.driverguide.com (they have the Macintosh version but not Windows version)...
Hi, guys. I have another problem which have been trying to solve without any solution for more than a month.
I am doing a simple database program using the struct data structure. I managed to do add, delete, search and display the records entered without any problems but when it comes to edit...
Hi guys. I have a function which needs to return a string (which is in an array)back to the main program.
The function prototype is:
char arrString(void);
char arrString()
{
char tempString1[15], tempString2[15];
statements...
statements...
strcpy(tempString1, tempString2)...
Hi, guys. I am doing a computer project and need to print out some DOS screen capture of my progam. In order to save lots of ink, I need to change my black DOS background to white and the text to black.
Can this be done in Windows XP Professional or do I need do it using a graphic program...
Hi, guys. How do you detect whether an input with 'int' datatype is an integer and not letters or other characters?
Is there a built-in function in C that allows one to do this?
I know that if I use the 'char' datatype, I can check whether the input is a digit or not by using isdigit(int c)...
Hi, guys. I am having trouble converting numbers (which is in String datatype) into float or double. I need to add these numbers and return the sum of it to 2 decimal points.
I know this is quite easy but I have search in quite a lot of info but don't know exactly how to use any methods or...
Can anyone show me how to capture a string that is input by a user?
I am coding a simple console (DOS based) interface that needs some user input. For e.g. asking a user to input their name and search an array or link-list for that name.
I know I can use System.in.read() to capture integer but...
Hi, guys. I am having problem with my FILE input.
Whenever I input a structured data into my FILE, my first record displays correctly. But the subsequent entries contain the left over characters from the previous input.
Say for e.g. I entered a title for a book as:
Teach Yourself C Programming...
Hi, guys. Got some problem coding fread and fseek.
I have a structure as below:
struct bookData {
char isbn_no[14];
char BookName[100];
char Author[100];
char Publisher[100];
} item;
FILE *bookPtr; //Pointer to the FILE
I have managed to create a file (bookdata.txt) to enter data into. The...
Hi, guys. I need to save user input in a preformatted format into a file (e.g. database.txt).
This means that when the file is viewed by using a text editor, it should be formatted as I wanted it. See e.g.
below.
ISBN No: 3-23433-443-8
Book Name: My Book
Author: Myself
Publisher: Web...
hi, guys. I am currently taking a diploma course, which includes C programming. During our tutorials and assignments, I notice that my lecturer stresses quite a bit about the importance of writing pseudocode. However, from what I have done so far, I felt that writing pseudocode is quite a...
Hi, all. I'm having some problems with error checking for strings that has more than one word (i.e. sentences or phrases).
Say for example, I need the user to input a book title into an array (e.g. booktitle[40]).
I also need to do some error checking to see if the booktitle input is more than...
Hi, all. I know this problem has been addressed in this forum but I am still facing some difficulties with my input.
Ok, I know that I should not mix scanf with gets but what I need to do is to ask my users to input a number of things into a file:
1) a string (e.g. a book title - I can't use...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.