Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #14.9K
Ranked #2K
~4K People Reached
Favorite Tags
c++ x 6
c x 1
Member Avatar for samaru

Just curious. Hehe, I was thinking about this the other day and now I'm wondering what all you fellow coders out there have done. So what's the HARDEST most complicated program you've written? It doesn't have to be efficient, heck, it can all be spaghetti code. The hardest thing I've …

Member Avatar for Fest3er
0
3K
Member Avatar for another guest

well here's da problem,its not really a problem i guess but i'm kinda confused about all this:S i'm currently doing BCS(british computer society professional examinations),well its pretty kewl considering u can complete a degree equalent programm in half da time:D anyways all it has is theory so i'm guessing i'll …

Member Avatar for another guest
0
226
Member Avatar for babygrl83

This is the problem amd im not sure how to do it. This class from what my otherclassmates have been telling is that I should already know how to do the pseudocode. But my teacher does not explain anything but this is what I have came up with. The Barking …

Member Avatar for Abzero
0
482
Member Avatar for Alex_

Hello, i am supposed to solve a problem using this Method. Can anyone pls tell me what this exactly is, and how does it work?Or maybe a link to a source ...? i'd be very thankfuly! Pls this is urgent.It's for my thesis! the perl calculus problem sounds like this: …

Member Avatar for Abzero
0
150
Member Avatar for zoner7

Typically the code that I have seen uses phrases such as i++ as opposed to ++i. Recently, in a recently purchased book, I have seen the former implemented. As I understand i++ means that the addition takes place after the line is executed and thus with the initial value of …

Member Avatar for Abzero
0
154
Member Avatar for sid99

I'm very new to this topic so not so good. I'm trying to right this to be right recursive: [B]Question (1)[/B] A ---> A + B A ---> C B ---> B + C B ---> C C ---> (A) C ---> integer Would it be something like this: A …

Member Avatar for sid99
0
88
Member Avatar for PhiberOptik

I am a confused student who isn't sure what he should or shouldn't take in university. I love programming from what I have done; i know a good portion of php/html/sql/javascript. I really enjoy it more than other stuff like messing around with hardware, networking, security etc. As of right …

Member Avatar for Abzero
0
98
Member Avatar for kasippu

01. ) during sorting , if we wish to swap the items in 2 positions , we simply swap the pointer values and leave the main data table unchanged:: what is a possible advantage and disadvantage of doing this .. ?? 02. ) what would be the effect of incrementing …

Member Avatar for Abzero
0
83
Member Avatar for sieghart0123

I'm new at C++ programming and am working on an assignment. I've managed to compile my codes alright but got an error while testing the program. The error surfaced halfway through viewing details of a linked list, where suddenly, the program started printing weird characters while the computer emit beeping …

Member Avatar for sieghart0123
0
123
Member Avatar for shankhs

Hi all, Do u have any idea that whether I can pass any function as a parameter to another function? like: [code] #include<iostream> #include<fstream> #include<vector> using namespace std; int i=5,j=8; int add() { int c=i+j; return c; } int sub() { int c=j-i; return c; } int try(int *add) { …

Member Avatar for RenjithVR
0
152
Member Avatar for Gerlan

Okay I have a small problem. I have to load a file which contains (for example): a bleh b blah c bloh So basically it contains a character(1,2,3,..etc) followed by a string (bleh,blah,bloh etc..) I have to create a struct which should contain a char and a string, they will …

Member Avatar for Abzero
0
92
Member Avatar for Onixtender

Hi, I've have a problem of printing data from stack, if it's simple words,then stack works just fine,but if I try to push changed data using function(Written by a very intelligent moderator :) ), I get just the same word n times: Intelect Intelect Intelect .... [code] #include<stdio.h> #include<stdlib.h> #include …

Member Avatar for Onixtender
0
179