how do i add a space to the end of a string? this function takes the users first, middle, and last name. then it puts them all together in the string result....
how do i add a space to the end of a string? this function takes the users first, middle, and last name. then it puts them all together in the string result....
Hi, Conceptually, it would be something like this: result[i++] = ' '; In practice, make sure 'result' is large enough to hold 'first', 'middle', 'last', two...
This is a good solution and I have thought of this too. However, because the problem looks like a class/homework assignment, I am afraid that the instructor...
Have you ever thought that Instructors might want you to find the easiest way to write it and they only give you the hard one? gotta think outside the box ......
Unfortunately, from what I see so far on this and other groups, instructors normally want the students to do the hard way. Some question posted clearly states...
The code is fine, except that the string was not properly terminated!, I did just that here /*code start*/ void concat3(char result[], char first[], char...
Dinesh V. R.
dineshvr@...
Jan 2, 2003 8:01 pm
4126
Bummer! Should have checked first! Sorry. Shyan ... terminated!, I ... {...
Hi, I am trying to link two programs to create an executable. I have a function called diff_scheduler saved as diff_scheduler.c which I am calling from the...
Hello all. I am trying to create a notepad-like program. My problem is w/ the file output. My complier doesnt detect any errors, but when I run the program,...
What the linker says was correct. Examine your code carefully. You have never written an definition for the function "diff_scheduler (..) "declared in...
hi friends My name Anitha.I am doing my Second year BE,CSE .In my college they asked me to do Mini Project in c++ .The time frame they had give is too short. ...
From: anitha_cute2003 <anitha_cute2003@...> ... Hi - I can't be bothered doing my job today, could someone do it for me please while I get paid for all...
Hi Sridhar, That was a typo error. In the actual function I declared Q3 as a pointer. The mistake was in my Makefile. I had given the -o flag instead of the -c...
Hi everyone!, I'm new with this C++ thing, but I need to finish this one C++ project for my teacher. It's a very short project involving 3 classes, the use of...
hi,i fed up to my project wit the c programing.even i try to find the programing but all failure.so,i really need all of u do me a favor. now,i follow up a...
hi,i fed up to my project wit the c programing.even i try to find the programing but all failure.so,i really need all of u do me a favor. now,i follow up a...
LOL. A very apt reply. There is a wicked twist in this thread: You and I get paid for what we do (hopefully). She has to pay for what she does (hopefully). ...
I liked to do any project in C/C++ involving games, applications or anything. It can be AI. Please give me your responses. Also I liked to know the tools...
Hi everyone, I am developing an application in C. A part of the program requires a text file to be accessed and the contents of the file to be written to SQL...
hey..I've checked the site.. I like the graphics you've used for the c++ test and others..do you have some documents/links/library/component on how to give a...
I want to write a program that can let me get the data from internet MY program should able to the following of this: Name: Address: Phone Nbr: City: email...
i've been working on this project for the past few days and i cant seem to get it to work... the function find_word is supposed to determine if one character...