Top "Types" questions

Types, and type systems, are used to enforce levels of abstraction in programs.

How to get the type of a variable in MATLAB?

Does MATLAB have a function/operator that indicates the type of a variable (similar to the typeof operator in JavaScript)?

matlab variables types
Typescript input onchange event.target.value

In my react and typescript app, I use: onChange={(e) => data.motto = (e.target as any).value}. How do …

reactjs typescript types typescript-typings
Incomplete type is not allowed: stringstream

Why does this line give the error Error: incomplete type is not allowed? stringstream ss;

c++ types stringstream
How can I get the data type of a variable in C#?

How can I find out what data type some variable is holding? (e.g. int, string, char, etc.) I have …

c# types
biggest integer that can be stored in a double

What is the biggest "no-floating" integer that can be stored in an IEEE 754 double type without losing precision ?

types floating-point double ieee-754
How do I check if a variable is of a certain type (compare two types) in C?

In C (not C++/C#) how do I check if a variable is of a certain type? For example, something …

c types struct
Passing just a type as a parameter in C#

Hypothetically it'd be handy for me to do this: foo.GetColumnValues(dm.mainColumn, int) foo.GetColumnValues(dm.mainColumn, string) where …

c# types methods parameters
What is the difference between bool and Boolean types in C#

What is the difference between bool and Boolean types in C#?

c# types boolean
What is the difference between “int” and “uint” / “long” and “ulong”?

I know about int and long (32-bit and 64-bit numbers), but what are uint and ulong?

c# types integer unsigned signed
Objective-C : BOOL vs bool

I saw the "new type" BOOL (YES, NO). I read that this type is almost like a char. For testing …

c objective-c types boolean