Tagged Questions

6
votes
4answers
209 views

C++ Variables - declare and define. Inheritance

Let's have a C++ object A. There are two variables (VAR1 and VAR2) in A accessible to its children. Object B extends A and has one private variable VAR3 it can also access VAR1 and VAR2. Each instance ...
6
votes
7answers
2k views

Is there a strict definition for the words define, declare and assign?

I tend to use the words define, declare and assign interchangeably but this seems to cause offense to some people. Is this justified? Should I only use the word declare for the first time I assign to ...
4
votes
10answers
1k views

Defining const values in C

I have a C project where all code is organized in *.c/*.h file pairs, and I need to define a constant value in one file, which will be however also be used in other files. How should I declare and ...
0
votes
1answer
490 views

Different ways to declare/define variables?

This is a VB.Net newbie question. I'm confused at the different ways to declare and define variables. Here's an example: Dim URL As String = http://www.c-sharpcorner.com/default.asp Dim request As ...