0
votes
3answers
50 views
Declaring an Array using Variables and the array() construct in PHP
I'm sure this has been asked before but I can't find it. The PHP documentation unclear on this and I can't find any examples like this. Is it legal to use variables in the declar …
1
vote
8answers
174 views
Is it correct to use declaration only for empty private constructors in C++?
For example is this correct:
class C
{
private:
C();
C(const & C other);
}
or you should rather provide definition(s):
class C
{
private:
C() {};
…
9
votes
2answers
100 views
C Puzzle - play with types
Please check the below program.
#include <stdio.h>
struct st
{
int a ;
}
fn ()
{
struct st obj ;
obj.a = 10 ;
return obj ;
}
int main()
{
struct st obj = fn() ;
p …
3
votes
8answers
321 views
What happens to a declared, uninitialized variable in C? Does it have a value?
Quick question-- if in C I write:
int num;
Before I assign anything to num, is the value of num indeterminate?
-1
votes
2answers
31 views
final arraylist declaration
when i declared final arraylist() then can i perform insert,search and update operation in that arraylist or not??please reply me...
thanks in advance
0
votes
5answers
192 views
Simple C array declaration / assignment question
In higher level languages I would be able something similar to this example in C and it would be fine. However, when I compile this C example it complains bitterly. How can I assig …
0
votes
4answers
443 views
How to understand complicated function declarations?
How to understand following complicated declarations?
char (*(*f())[])();
char (*(*X[3])())[5];
void (*f)(int,void (*)());
char far *far *ptr;
typedef void (*pfun)(int,float) …
0
votes
3answers
60 views
Initialization Error in CSharp
I have a Type set up as follow
class Program
{
static void Main()
{
IEnumerable<int> one = new int[] { 1, 2, 3, 4, 5, 6, 7 };
IEnumerable<int> two = …
1
vote
12answers
188 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 …
7
votes
6answers
296 views
Why are variables declared with their interface name in Java?
This is a real beginner question (I'm still learning the Java basics).
I can (sort of) understand why methods would return a List<String> rather than an ArrayList<String& …
0
votes
6answers
126 views
Templates and headers question
The compiler says it can't find the reference for the function when I do this:
// link.h
template <class T>
T *Link(T *&, T *(*)())
// link.cpp
template <class T …
1
vote
3answers
183 views
What is the difference between int x=1 and int x(1) in C++? [closed]
Possible Duplicate:
Is there a difference in C++ between copy initialization and assignment initialization?
I am new to C++, I seldom see people using this syntax to decla …
1
vote
5answers
113 views
Java declare array outside variable definition
I'm looking for a way to give a java array a value directly, outside of its declaration, for example
/*this works*/
int a[] = {1,2,3};
/*this doesn't*/
a = {1,2,3};
the motivat …
0
votes
2answers
49 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 …
0
votes
5answers
224 views
__attribute__ in C
Hi,
I was just wondering why and how is __attribute__ used in C programs.
thanks,
