Okay i will send you some but i dont know how to send you some of the C++ book where do you want me to send it thru...? just tell me and i will do that okay....
Hi, I am trying to read data from a text file and process it. I have not used any pointers or malloc. Below is my code and the data in the text file. Data: ...
I've made a few changes -- see your code. I didn't review this code in detail, but checked the obvious. ~Rick ... if (feof(fp)) // RB! added break; //...
Ok if you have some Ebooks please send those by Email.I have completed my c++ study from my Institute and school also But still I want to learn more will you...
Hi Rick, Thanks for the message I figured out the problem. The first problem was I dint need that while(strln <= string_length) loop, and as you said I used...
Huhuhu! I'm currently doing our exercise in database. It's about file manipulation. I'm trying to mount files from a class.txt to my linked list. The problem...
Hi I didn't completely understand your question but I noticed something strange : what is "/r" mean ? Do you mean new line ? if so , it should be "/n" show us...
... And what problem do you have exactly? You haven't described it yet. ... That's easy: you're comparing a single character c to a string "\r"; I'm pretty...
"\r"=enter ^_^ I'll copy and paste the whole program.. i made some modifications... but it is still not working well! @.@ I think there is something wrong with...
... I already converted from double quote to the single. But my program still has some bugs! @.@ I think I wasn't able to manioulate data well through my...
... Forgive me but I think that inside this code you are comparing characters with strings. "\r" is a string. '\r' is a character. I think that getche()...
... yet. ... "\r"; ... a ... well ... problem. ... is ... linked ... Hi, i think you must write this char name[20] = {0}; // make all array have \0 int x=0; ...
I made some revisions in my code... My problem now is... whenever i add a second time to the text file... it produces weird characters. When I add, the first...
I'm new here!Also new in the world of c.I'm eagerly to learn more from everyone. #include <stdio.h> int main() { int a; int b; int c; int d; int e; int f; int...
Hi I think you are completely new to c you can pick an easiest solution: 1- Fill the entered number in an array : int n ; int array[6]; for ( int i = 0 ; i < 6...
Thank you for your answer.this is my first step in C.my classmates and I was learning what does"int main()"means just last week ~~! I think is must be a...
I want to know which one would be a good book to do advanced programming in c++?It must be relatively error free and have good examples.Please cite some book...
... My suggestion is: join the group c-prog ; their Group Welcome message contains a link to the C++ books recommended by the "real" experts there; I don't use...
... Hi Rajeev, What kind of book are you looking for ? Electronic one PDF-like or paper one? And what it means "relatively error free" ? How many "full of ...
I'm a complete new one in C.And I'm reading the book"C how to program"writen by Harvey M.Deitel and Paul J.Deitel.It contain main experiences of ths wirters....
... Hi Rajeev again, Maybe try that one as well: http://www.cs.iitm.ernet.in/~rakeshp/C++%20Complete%20Reference.pdf To have complete reference is also not...
/* Fig. 6.8: fig06_08.c Histogram printing program */ #include <stdio.h> #define SIZE 10 /* function main begins program execution */ int main() { /* use...
... Do you mean #include ? If so, the meaning is as follows: The C compiler cannot know what modules your complete program will consist of. So, if you want...
      hello, i cant understand user defined function(function declaration, functon call,function definition) in C language.if any online plz......