Problem: Write a program that inputs five digits numbers, separates the numbers into its individual digits and prints the digits , separated from one another...
74537
Thomas Hruska
shininglightpro
Jan 2, 2012 3:30 am
... Problem: You didn't show us your attempt to solve it yourself/details on what you are stuck on/etc. -- Thomas Hruska CubicleSoft President Barebones CMS is...
74538
Littlefield, Tyler
tyler@...
Jan 2, 2012 4:46 am
... We don't do homework. If you want that program done, I suggest you get started on it soon. If during your work on -your- homework you find that you need...
74539
Shoaib Sayyed
shoaib_sayyed49
Jan 2, 2012 9:05 pm
take input from user about following points; 1.Book1 :- Title name of author price 2.book 2:- Title name of author price and after accepting the informations...
74540
lawrencedechant
Jan 2, 2012 10:48 pm
Does Microsoft C++ express 2010 have intellisense? if so how do i turn it on. Thank you for the help in advance....
74541
Thomas Hruska
shininglightpro
Jan 2, 2012 10:49 pm
... "Informations" isn't a real word. We also don't do your homework for you. Show us what you've tried and describe what exactly you are stuck on. -- Thomas...
74542
Rob Richardson
interrobang
Jan 3, 2012 12:23 am
I presume you are talking about Visual Studio 2010 Express, and yes, it does have Intellisense. I do not know how you would turn it on; I would have expected...
74543
~Rick
thefirstrepa...
Jan 3, 2012 1:58 am
... Okay, I've written the program. Now what? ;-) ~Rick [Non-text portions of this message have been removed]...
74544
gvmms
Jan 3, 2012 3:18 am
Hi, Once in Visual Studio 2010, Try the following: Select Tools > Options > Text Editor > All Languages. All Checkboxes in the "Statement Completion" section...
74545
Woodntya Liktano
dreamn8r
Jan 3, 2012 9:43 am
Even I, an intermediate beginner in C++ can do that one easily. What's the big deal? ________________________________ From: Shoaib Sayyed...
74546
John
johnmatthews...
Jan 3, 2012 12:43 pm
C related, but a bit off-topic. I'm currently using KDevelop C/C++ to write my C code under linux targeting an embedded non-linux environment. That is, I'm...
74547
Brett McCoy
smartandkewl
Jan 3, 2012 12:50 pm
... I am surprised KDevelop doesn't do this, this is pretty standard functionality for an IDE. Emacs does it, Anjuta, Eclipse... they all can do this. I...
74548
John
johnmatthews...
Jan 3, 2012 12:55 pm
... Probably does, but I can't find any documentation for it. ... Ok, thanks - installed Eclipse a couple of times but didn't get on with it; might give it...
74549
Thomas Hruska
shininglightpro
Jan 3, 2012 2:56 pm
... Intermediate Beginner? Great... Expert Expert! -- Thomas Hruska CubicleSoft President Barebones CMS is a high-performance, open source content management ...
74550
John
johnmatthews...
Jan 3, 2012 3:26 pm
... I now know a lot more vim commands than I did before, including <ctrl-w>gF which opens the file under the cursor at the specified line number in a new...
74551
ed
psy80uk
Jan 4, 2012 5:38 pm
... Do you need the ^W, gF seems to work on it's own, you may only need to switch to command mode (esc/^[) to do that though. I've found ^N and ^P rather...
74552
Sihd
aaron_farris2
Jan 4, 2012 8:20 pm
I am reading the Thinking in C++ by Bruce Eckel and am on chapter 3 and I could use some help understanding how to use << and >> to individual bits in a...
74553
Thomas Hruska
shininglightpro
Jan 5, 2012 6:07 am
... I'm assuming the exercise involves tearing apart the IEEE double precision format: http://en.wikipedia.org/wiki/Double-precision_floating-point_format ...
74554
Sihd
aaron_farris2
Jan 5, 2012 7:20 pm
... I have dont that now by trying to cast it as a char and storing the result in an int array. But now I try to turn the number negative to see if the sign...
74555
Rob Richardson
interrobang
Jan 5, 2012 7:49 pm
It would probably help if you could post your source code. RobR [Non-text portions of this message have been removed]...
74556
Sihd
aaron_farris2
Jan 5, 2012 8:27 pm
... Okay, I put the whole project(named 29 after the assignment number) in a zip file uploaded it here: http://www.4shared.com/zip/6-ByD3GN/29_online.html...
74557
Sihd
aaron_farris2
Jan 6, 2012 3:14 am
I think I figured it out, I was at first somehow giving my bitwise fuction the wrong address so it wasn't changing. I fixed that somehow. Then I noticed that...
74558
John Gaughan
john23874
Jan 6, 2012 3:36 am
... FYI, this might be a good read for you: http://en.wikipedia.org/wiki/Endianness Any scalar data type with a size greater than one byte will be affected by...
74559
Sihd
aaron_farris2
Jan 6, 2012 5:48 pm
... Thanks for the research topic, but if you were implying that it had to do with my problem of the reversed bits its unlikely to apply here. From what I...
74560
John Gaughan
john23874
Jan 7, 2012 3:41 pm
... Keep in mind that the byte is the smallest portion of memory that can be addressed. the computer will manage the bits for you. It is your job to manage the...
74561
Sihd
aaron_farris2
Jan 8, 2012 12:48 am
... I meant that I was reading each bit in each byte in the wrong order. I was moving from the 8th bit to the 1st bit when I should have been going from the...
74562
John Gaughan
john23874
Jan 8, 2012 1:31 am
... I am familiar with Bruce Eckel and his books. I have several of them printed out and do refer to them from time to time. He is a smart man with a profound...
74563
Sihd
aaron_farris2
Jan 8, 2012 4:06 am
Ok, no offense meant but I think we are getting a little too emotional. It would be easy to continue this conversation but I do not want to risk getting banned...
74564
John Gaughan
john23874
Jan 8, 2012 4:27 am
... I'm not emotional at all. I am trying to help explain a topic which it appears is new to you. I have been lurking and posting here for some time now, I...
74565
andrew clarke
zoomosis
Jan 8, 2012 4:59 pm
... Don't panic! :-) I believe John was not disputing what you said, more so how you said it. (You can't read an individual bit from memory, only a byte. Of...