C
In computing, C is a general-purpose, block structured, procedural, imperative computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.
Application
Database
Remove
Platform
Any
License
Any
Hi,
I've developed my own database and stand alone applications in B++Builder 6 in Windows XP and the last compile was during 2008. I need to upgrade now on laptops and one option is Windows 7...
hello
i build two separate software simples , one for write one file that i called persona.txt and another for read it
=================================
#include
#include
struct...
Hi buddy,
Thanks for ur reply...
U hav mentioned that the memory shall not be allocated for enums.
But i could remember that the memory allocation and processing time(preprocessor time and...
On Windows, just use SGBD apis
(see Windows api group http://tinyurl.com/yjy3ajr)
Hello,
Im currently having some issues with trying to combine these two not been able to find a guide which im able to follow 100% except one where I managed to construct this code from, though its...
Just use getchar() at the places indicated and your code should work like a charm.
#include
#include
using namespace std;
int main()
{
char date;
char isbn;
char title;
char...
Sorry here is the code. I thought it got attached.
// This program displayes the cashier screen
#include
#include
using namespace std;
int main()
{
char date;
char isbn;
char...
Strange enough I just increased the size of the descrip and name arrays and the whole file is now printing to the screen. So that takes care of that.
inFile.getline (meal.name, 22, ",");
should be
inFile.getline (meal.name, 22, ',');
and so on. You can tell this by reading the warnings carefully.
Hey. I'm trying to create part of a program that will read data from a text file, store the data into variables and then write the data into a random access file. So far this is what I have....
I have to make a project of supermarket billing system.
I have made a file containing the details of Some of the privelaged clients. It contains their sr no.,name, ph no and membership. Now I need...
It really does seem like you (or more likely the compiler) are trying to access some directory where you don't have right to write. Check all directory settings in the IDE.
What compiler are you...
: : I've the same problem. In my case the error occures in very strange (for me) place because when the program leves one of the functions (the "}" sign). The function job is to create a file, and...
MySQL C API
let me know how it goes
I am in relearning process, sorry if i make a mistake
my program's composed mostly of the commands outportb and delay, and it looks something like this:
#include
#include
#include
void main()
{
OUTPORTB(0xxx,0xXX);
in order to access the...
We are using Visual studio 6.0,When we are trying to access data from the serial port, in between the actual values we are getting 0's in the buffer into which we are reading the data from the port...
For starters, you need to post a date. My immediate help can't work if it arives two years too late. Don't waste others time. You didn't give your platform and programming tools, so I'll have to...
any one can tell me how to read xml file using c++
Hi All,
I have a question what the relationship between structure members and index of members?
Foe example, a struct like this:
typedef struct {
char flag;
int addr;
float weight;...