Tagged Questions
The programming-fundamentals tag has no wiki summary.
25
votes
10answers
2k views
A clear, layman's explanation of the difference between | and || in c#?
Ok, so I've read about this a number of times, but I'm yet to hear a clear, easy to understand (and memorable) way to learn the difference between:
if (x | y)
and
if (x || y)
..within the ...
13
votes
7answers
250 views
I'd like to get back to the basics of CS. Any suggestions for tutorials or application-minded reference material?
I've been programming as a consultant for years, and I adore my work, which involves a lot of object-oriented analysis and design of software systems using managed languages (ie. software ...
7
votes
11answers
370 views
What direction should I take to improve my programming skills?
I've been attempting to learn programming (in C#) for a few years now. The problem I've had is that I'd know what I want to do (or what I want the program to do), but no idea on how to actually ...
5
votes
12answers
304 views
What fundamental things should someone new to programming learn? [closed]
Possible Duplicate:
What programming basics should I learn?
What rules / guidelines / ideas / concepts are so fundamental, that everyone who programs should know them and therefore learn ...
4
votes
9answers
276 views
Does a good programmer need to have good spatial sense?
Do you need to have good spatial sense to be a good programmer?
I have next to nothing of it (I think it has to do with the differing vision of my eyes).
I've already coded quite little things but ...
2
votes
1answer
79 views
NSMutableArray removeObjectAtIndex causing unexpected SIGABRT
I have looked at numerous posts which state various ways in which to remove an object from an array correctly, but I am not sure which method is best to use in my instance. I am loading a dictionary ...
2
votes
2answers
119 views
c pointers, Anyone got fundamental issues? [closed]
Possible Duplicate:
What do people find difficult about C pointers?
New to c programming (Actually new to programming in general). Well, I just can't get familiar with c pointers. maybe, I ...
0
votes
5answers
278 views
Edited most errors, Now Compiles, but does not Run, what am I doing wrong?
#include <cstdlib>
#include <iomanip>
#include <iostream>
#include <string>
using std::cout;
using std::cin;
using std::endl;
using std::string;
using std::setprecision;
using ...