Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K

10 Posted Topics

Member Avatar for Netcode

I want to live in a subterranean house in the middle of the woods with a direct line to the internet backbone. The woods above my house would be undisturbed so no one would know I'm there.

Member Avatar for iAssistant
0
103
Member Avatar for shindu

I am tryint to convert my c++ coed that solves a HiQ puzzle with a depth first search into c# so that i can play around with a gui for it. I have tried a few different approaches but the whole idea of everything being inside of a class is …

Member Avatar for shindu
0
182
Member Avatar for shindu

I trying to get dynamic memory allocation to work but i cant seem to get it right. [CODE=fortran] program test implicit none integer i,j, error,size real, dimension(2), allocatable :: inputMatrix print *, "Input the number of equations (and variables): " read *, size allocate (inputMatrix(size,size), stat = error) print *, …

Member Avatar for shindu
0
237
Member Avatar for shindu

so... i have been looking at this for a good 20 minutes and it makes no sense. when i compile this simple linked list implementation, it gves me this compile error. obj\Debug\Projects\LinkedList\LinkedList.o||In function `_ZN4nodeC1Ev':| obj\Debug\Projects\LinkedList\node.o:C:\Program Files (x86)\CodeBlocks\MinGW\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\include\c++\3.4.5\bits\locale_facets.tcc|2497|first defined here| ||=== Build finished: 1 errors, 0 warnings ===| any ideas what …

Member Avatar for shindu
0
55
Member Avatar for shindu

Im not sure where to throw this topic so i figured this was as good a place as any. My mom got an email from a friend of hers containing a picture in .jpg format and then 2 files both with the same name"Amazing" with .bin and .dat file extensions. …

Member Avatar for barryt
0
132
Member Avatar for Birendra Dhami

have you stated at all? Post the code you have and we may have some suggestions.

Member Avatar for csurfer
0
143
Member Avatar for jondsam

1: Where did k come from? i don't see it declared anywhere. 2: you are declaring i twice...that could cause some problems. 3: What exactly are you trying to do? Add code tags

Member Avatar for lexusdominus
0
123
Member Avatar for fadia

there are several things still wrong with your code. take a look at this [CODE=cplusplus] for(int i=0;i>=1;i++) { cin>>ARR [i][0]; } [/CODE] here i is initialized to 0 but the for loop condition segment requires a value of i that is greater or equal to 1. this for loop wont …

Member Avatar for shindu
0
161
Member Avatar for shindu

I am working on a basic linked list program and i seem to be having problems with the getline() function. I try to input data in to my struct: [CODE] cout<<"\n\nPlease enter the name of the student: "; getline(cin, temp->name); cout<<"Please enter "<<temp->name<<"'s class: "; cin>>temp->grade cout<<"Please enter "<<temp->name<<"'s GPA: …

Member Avatar for shindu
0
302
Member Avatar for shindu

Hi, im working on a small console app that among other things calculates the mean value of all rows and columns of a matrix. I want to incorporate the mean symbol (x with an over score) into the out put but the symbol isn't included in the ASCII chart, any …

Member Avatar for shindu
0
119

The End.