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
~1K People Reached
Favorite Tags
Member Avatar for Netcode

What exactly has been your wildest thought or fantasy which you clear know/knew is/was unachievable?

Member Avatar for iAssistant
0
94
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
158
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
221
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
47
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
100
Member Avatar for Birendra Dhami

sir how can i add two fraction nos. to get again fraction eg. a/b+c/d=(ad+bc)/bd I would be very happy if u send me code.

Member Avatar for csurfer
0
103
Member Avatar for jondsam

[code=cpp]#include <iostream> using namespace std; int Main() { int i = k + 1; cout <<i ++ << << endl; int i = 1; cout << i++ << << end1; return 0; } [/code] Please help me? What is wrong with this code? I am a C++ Noob! I just …

Member Avatar for lexusdominus
0
108
Member Avatar for fadia

Hello.. i've this HW.. i did what i can do.. but there were some errors that i couldn't fix.. and one point i dunnu how to do it which is change negative variables to positive ones?? can someone tell me how to code that? here is my code: [CODE]#include <iostream> …

Member Avatar for shindu
0
133
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
171
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
105