Hi, ... Use strcpy() function. your error will vanish. if you need to know why then search for it on Internet or get a good tutorial/Book ... Hint list[0].name...
I am writing a program that is read from an arbitrary file. I need to output the number of bytes of the file. This is my code so far. What do I add to it to...
... Very easy: you already output an error in case of the file not being opened. So what about using a variant of this, such as this: printf( "File length = %d...
im very much a beginner and was just assigned these two problems, i have no idea how to do them. 2. Write a program to compute all of the prime numbers up to a...
... What exactly is your starting problem? Don't you understand the algorithm? Then google for it and read descriptions; this is pretty basic stuff, and you...
I will have a project of security system using c# desktop application. help needed about what APIs are used to operate camera (to record, get instant pictures,...
Implementing webcam is not a big problem in c#... Try google ... :) by using keywords: "webcam on c#" i can get more than 900,000 references. or more specific,...
thank sir for your kind advise .I can also get more than 900,000 references, but the thing i want is not getting rite platform. Means i have webcams in more...
... There are several different approaches how to check for palindrome numbers. You are trying to compare every pair of digits. While is is a completely valid...
I would like to put GUI on my World Time Application written in C stuff like Combo list boxes ,message boxes ,Dialog boxes etc., and also be able to display...
I have a couple of questions, and no I'm not gonna ask for anyone to write it for me, I wouldn't learn would I? 1st question.) I'd like to concider myself a...
I need to open a text file that my compression application I am coding should read. when I create a text file in the compiler itself ( its name was given by...
Hi, The answer for your second questions. For any GUI programming in C++, if you want to play with buttons, create rich GUIs on your desktop or embedded ...
Is qt going to be for like windows? Or is it for mobile devices? I see Nokia and i'm an iPhone guy lol. Some of my books go into in small detail win32 and it's...
Hi The following may be more to your interest then http://doc.trolltech.com/4.3/compiler-notes.html This QT is cross platform in that there are Windows, Linux,...
... <snip> Please post the smallest piece of code which shows this behaviour, only then can we try to help you. Without seeing your code there's no use in...
... google for pop3 email C/C++ libraries and how to use them if you can access your yahoo email via imap, you can also google for imap C/C++ libraries and how...
It depends on what kind of yahoo email you have. Let's say you have a local yahoo email, such as: yahoo.co.id, yahoo.co.uk, and so on... you can access it...
Please refer the book, ANSCI C by Balagurusamy. This program is in last page.. From: basharatazad a <basharatazad@...> Subject: [C Programming] Write a...
Hi Everyone, I am trying to break down the byte into small pieces of bits. Here is what I want to do. open for any suggestions. typedef struct { unsigned char...
... Don't use structs - it's overkill. And potentially relying on behaviour that may not be portable. ... int bits01(unsigned char c){ return (c & 0x03); } int...
I know this code has more to do with assembly than C but that's why I am having trouble understanding it. I am not sure why the code pushes SI twice and why...
Saving and restoring BP,SI,DI is probably a formality included whether they happen to be used or not (at least by the author of this program). Those are the...