2
votes
5answers
125 views
can size of array be determined at run time in c?
As I know, an array needs to have a specific size before compiling time in c.
I wonder why this code still works?
int s;
printf("enter the array size: ");
scanf("%d",&s);
i …
2
votes
5answers
134 views
+250
What are the boundaries or scope definitions of HTML5 development?
From reading the mailing lists and looking at the specification I cannot tell what the limits of HTML5 are as a software or programmatic technology. I have seen where they have at …
1
vote
3answers
64 views
Programming Definitions: What exactly is ‘Building’.
What does it mean to BUILD a solution/project/program? I want to make sure I have my definitions correct (so I don't sound like a idiot when conversing). In IDE's, you can (corre …
0
votes
2answers
21 views
Using variables in an array passed to a def - Rails
I'm using the Google charts API to generate a pie chart in my Rails application. However, I'm having a problem passing local variables to the def in the helper. The def takes a 2 …
5
votes
3answers
85 views
PHP: word definition script?
I am developing a web page in which I am accepting input words from user and when user will submit those words then I want to display definition of those words or wikipedia link of …
1
vote
1answer
13 views
How to association workflow on creating of list definition
Hi,
I have my custom content type, and list definition. Once we create a list from this template, by default I wish to enable "Require content approval for submitted items", "Crea …
7
votes
8answers
241 views
What is the actual definition of an array? [closed]
Possible Duplicate:
Arrays, What’s the point?
I tried to ask this question before in What is the difference between an array and a list? but my question was closed b …
9
votes
10answers
530 views
What does .NET stand for? Is it an acronym?
I've seen pronunciation guides and all sorts of definitions of .NET as a framework, but no definition or explanation of the actual name of the framework.
Wikipedia doesn't seem to …
1
vote
12answers
163 views
C# Class function members declaration & implementation
Is there a concept in C# of class definition and implementation similar to what you find in C++?
I prefer to keep my class definitions simple by removing most, if no every, implem …
3
votes
2answers
125 views
Declare but not define inner struct/class - legal C++ or not?
Is following code legal C++ or not?
class Foo
{
class Bar;
void HaveADrink(Bar &bar);
void PayForDrinks(Bar &bar);
public:
void VisitABar(int drinks);
};
clas …
0
votes
2answers
47 views
Problem with method defined in VC++ header file
I have a class in a DLL that's used in many other DLLs and EXEs. It has a couple of methods defined in the include file (i.e. the method body is in the .h file) that's included in …
16
votes
58answers
3k views
Are you a good or bad programmer?
Hi All,
I see a lot of questions on SO that are asked about 'good' programmers vs 'bad' programmers.
For example, what is a good/bad programmer, how to tell a good/bad programmer …
0
votes
5answers
116 views
What is applescript and what is it used for?
What is applescript and what is it used for?
2
votes
3answers
169 views
Cleanest way to define classes in Python?
I want to define classes in Python, but I'm currently putting them in modules, contained within packages.
Is there a cleaner way of doing this? Is it okay to define classes in __ …
5
votes
9answers
304 views
What is Code Coverage?
Hi there ,
I have 3 questions :
What is CodeCoverage ?
What is it good for ?
What tools are used for
analyzing Code Coverage ?
