0
votes
7answers
116 views
c# factor algorithm help
Ok, I have a problem that is bugging me, and its on a study guide for a programming test, I can't seem to figure out the algorithm needed to complete it, so any help would be much …
24
votes
14answers
754 views
Giving presentation on software project to non-programmers
Soon I will need to give a presentation on my honours project for the engineering faculty and a large group of engineering and technology students at my university. While all the t …
1
vote
2answers
115 views
How can I indent cout output?
I'm trying to print binary tree
void print_tree(Node * root,int level )
{
if (root!=NULL)
{
cout<< root->value << endl;
}
//...
}
H …
3
votes
9answers
253 views
Version Control for Homework Assignments
School is back in session and I've found myself at a loss. At the end of last semester, we had a group project utilizing subversion (group of 4 people) to make commits and get it …
0
votes
0answers
121 views
What is the best free forum hosting site for programming forums?
I'm interested in corresponding with some schoolmates with an online forum that offers more than Google groups, namely intelligent code colors/formatting. MSDN forums and this site …
1
vote
4answers
197 views
C program showing a square instead of string
I have done a lot with Java but I am currently trying to learn c. I am trying to make a program to convert a number from decimal to binary.
Here is what I have:
#include <stdi …
3
votes
14answers
340 views
Is Mac experience important for a future developer?
I would like to know if this is really helpful to have experience with Macs on the job market for developers with B.Sc.. I have been using Windows and Linux since the start of unde …
1
vote
3answers
81 views
Can I sell applications created using VS2008 from DreamSpark?
Hello!
My version of Microsoft Visual Studio 2008 is downloaded from DreamSpark. Does my license include the rights to sell any created application?
I found : "you must use them …
2
votes
4answers
99 views
Advice for a student planning to take Co-Op
I've been studying programming at a local college for 1 year now and I also do a lot of studying at home. This semester, I just realized that I have more than enough credits to be …
2
votes
2answers
67 views
Which Design Pattern to use for MS Surface Apps (WPF)?
Background: I'm currently for my University creating some simple apps showcasing the possible educational potential of the Microsoft Surface. Their functionality falls somewhere be …
-1
votes
1answer
104 views
what programing languages must learn to cover all part of programing world(Web Programin, App programing, Batch programing and …) [closed]
I want now I myself as a student of CSE what languages(or technologies, or framework or ...) should I learn to Cover all part of programing world I mean:
1- Web programing
2- Kern …
1
vote
4answers
186 views
How do you study for IT exams?
How do you study for IT related exams?
Are you the sort of person that leave it to the last minute? Do you go through all of the lab work and re-do them? Do you use the techniques …
2
votes
12answers
653 views
Is it worth learning Java/J2EE/Spring/Hibernate in middle/high school?
I'm a middle school student and I've taught myself to program. I've learned to think in objects and algorithms, how to use loops and ifs and functions and variables. I've also lear …
-5
votes
1answer
125 views
C++ allocation, construction and destruction questions
Q1. What happens first- memory allocation or constructor call for the below written statement ?
int *ptr = new int();
Q2. What is the difference between following three approach …
9
votes
12answers
464 views
What to do in the situation of being encouraged to go slow as a student programmer?
I'm currently doing a co-op term at a government position. It's my first co-op term and I'm really interested in learning lots of new things, as well as gaining practical experien …
