Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K
Member Avatar for sharara

i have transferred one file from one laptop to another via bluetooth. the second lapi already had a file with same name. the transferred file replaced the same name file in the second lapi. i want back the original file in second lapi. how it can be done?? can anyone …

Member Avatar for sharara
0
237
Member Avatar for kolibrizas
Member Avatar for baldwindc

Hi, in a given c program where you have [CODE]myvar = sumR(char * arg1, int arg2)[/CODE] sumR is a function in an assembly .s file. I have done all the calculations, but I have no idea how to return the value to the calling c program. Any ideas? Thanks so …

Member Avatar for GunnerInc
0
686
Member Avatar for baldwindc

ARM's ASM is a breed in it's own. AMD and Intel, although different, have more closely related assembler than most. Someone mentioned the other day that AMD is just an Intel repeat, basically copying engineering designs and repeating them with reduced cost (as they don't pay to have it designed, …

Member Avatar for caperjack
0
229
Member Avatar for baldwindc

Hi, I am tasked with writing selection sort in assembly. We are writing for the ARM processor. Currently, this is what I have: [CODE] sort2: 73 stmdb sp!, {v1-v5, lr} @ Copy registers to stack 74 ldrb r5, [a2] @ J = n 75 76 ldrb v2, [a1] 77 cmp …

0
374
Member Avatar for Navlag

I am getting the following error: PII.cpp:266: error: 'struct std::string' has no member named 'getfirstblock' And I'm not sure how to fix it, since "int block" has to be equal to the firstblock of the file, how can I fix that error? Also, my "getfirstblock" function should return the block …

Member Avatar for baldwindc
0
884
Member Avatar for skylinedrifter

Hey fox i had a hw problem and im stuck we're supposed to do a payment project and i sort of did the first part but then stuck on the second. Here's what i've done so far... [CODE]#include <iostream> #include <iomanip> #include <cmath> using namespace std; //Program name: Amortize int …

Member Avatar for baldwindc
0
163
Member Avatar for baldwindc

Hi all, I'm going to write a program to play this silly online game that I waste too much of my time with, so I'm here looking for advice. Which language do you recommend I use? The game is entirely html / css based with all of the commands being …

Member Avatar for Rashakil Fol
0
168
Member Avatar for baldwindc

So, we were asked to design a vending machine. You can insert nickles, dimes, quarters, and dollars. I can add the amounts up, my only problem is that I can't get the input correct. My circuit is attached as a jpeg. Here are my questions. Any help is much appreciated. …

Member Avatar for cwarn23
0
176
Member Avatar for Superandomness

I have a string that has a ton of random characters (pulled from a webpage). I want to pull all of the numbers, commas, hyphens, periods, and percentages from the page and put them into a text file. I'm new to C++ so I'm not sure how I'd go about …

Member Avatar for Superandomness
0
224
Member Avatar for meli123

[CODE]#include <iostream> using namespace std; int main() { char a, b, c, d, e, f, max; cout << "enter a b c: "; cin >> a >> b >> c >> d >> e >> f; max = a; if(b>max) max = b; if (c>max) max = c; if (d>max) …

Member Avatar for murnesty
0
202
Member Avatar for baldwindc

I'm a computer science student at the University of Tennessee Knoxville and for my "Technical and Professional writing" course I have to interview someone in my field. Seeing as I know no computer scientist and my professors are too busy, would anybody in the wonderful Daniweb community be willing to …

0
179
Member Avatar for existinglady

This is our new and revised program... for the registration: I thank all of those people who helped me. for the search function: so I've manage to, actually my teammate managed to get a search function working for edit function: we havent figured it out on what methods are gonna …

Member Avatar for existinglady
0
2K
Member Avatar for baldwindc

Hi, I have begun using Visual Studio 2010 in an attempt to create a website. The website uses a Microsoft Access Database to store information and then displays this information on a page according to the city. So for Hendersonville it redirects to myDomain.com/Hendersonville.aspx Well, In development i realized the …

0
79
Member Avatar for SouthernBark30

Hello...I am having serious issues with my computer..I have been up here before and JHolland helped me clean my computer, I was having spyware issues...well I have kept my computer clean from all viruses using the knowledge that I gained from JHolland..but now I am having an entirely different issue. …

Member Avatar for benmar
0
116
Member Avatar for askhari139

I have windows 7 installed in my laptop.Can I install Linux as well keeping windows 7 as it is?If yes how to do it?And once I installed it, will I be able to set separate security settings to the two?

Member Avatar for benmar
0
177
Member Avatar for baldwindc

I have worked with Java, C, and C++ primarily on unix systems. I would like to get into Windows application development, and have two questions. (In your opinion) - What is the best IDE supported lanauage in the Windows environment that is capable of sending system events to change system …

Member Avatar for Momerath
0
142
Member Avatar for baldwindc

I am taking a data structures class and we are using the standard gcc compiler on a unix system. This is fine and I have no troubles using it, but I would like to begin using an IDE for my labs. I am trying Visual Studio 2010 Professional with my …

Member Avatar for baldwindc
0
237
Member Avatar for baldwindc

Hi, I am about to set up a dual boot configuration on my machine. I plan to install osx on my pc, with windows 7 being the most used partition on the machine. I would like for windows to be out the outside of the hard disk so I may …

Member Avatar for mjdodd
0
187
Member Avatar for baldwindc

I'm looking for a starting point on this. Can someone point me in the right direction? I want to allow a user to create a new class object that will just store data. My class is data and my type is "flight" so: [code=java] Data flight1 = new Data("A string", …

Member Avatar for baldwindc
0
355
Member Avatar for baldwindc

Could someone please explain the following code to me? It's not for class, more personal curiosity. Thanks in advance [code=cpp] while(!feof(infp)) { fgets(buf, MAXLINE, infp); fputs(buf, outfp); } [/code] what I'm mainly curious about is the argument o feof "infp."

Member Avatar for Ancient Dragon
0
146
Member Avatar for baldwindc

I have been struggling with this for a while. Will someone please help me? The issue is within a while loop. The while loop is reading info from getline, copying values from an input file to (1)double array type char[i][20] , (2)array type double [i]. The input file is as …

Member Avatar for arkoenig
0
1K
Member Avatar for baldwindc

ifstream mystream(file_name); ofstream outputstream(filename, ios::out); do { mystream.getline(line, 100); mystream >> country_name >> happiness_value; total_happiness = total_happiness + happiness_value; count++; outputstream << country_name << " \t \t " << happiness_value << endl; } while (!mystream.eof()); the file ifstream is reading from is a .dat file, in this format: first 1 …

Member Avatar for baldwindc
0
1K