Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to create a custom sized variable type in c?

Tags:

c

types

Good evening, sorry in advance if I have a bad English, i'm French.

So, in C, there is different variable types, for example int, long, ... That takes a number of bytes depending of the type, and if I'm not wrong the "largest" type is long long int (or just long long) that takes 8 bytes of memory (like long which is weird so if someone could explain me that too thanks)

So my first question is: can I create my custom variable type that takes for example 16 bytes or am I forced to use strings if the number is too high for long long (or unsigned long long) ?

like image 209
Fayeure Avatar asked Aug 03 '20 19:08

Fayeure


People also ask

Can you create your own data type in C?

During your programming experience you may feel the need to define your own type of data. In C this is done using two keywords: struct and typedef . Structures and unions will give you the chance to store non-homogenous data types into a single collection.

How many ways we can create custom data type in C?

ANSI C provides three types of data types: Primary(Built-in) Data Types: void , int , char , double , and float . Derived Data Types: Array, References, and Pointers. User Defined Data Types: Structure, Union, and Enumeration.

How do you create a variable in C?

Variable Declaration in C You will use the keyword extern to declare a variable at any place. Though you can declare a variable multiple times in your C program, it can be defined only once in a file, a function, or a block of code.

Can you change the type of a variable in C?

Type casting refers to changing an variable of one data type into another. The compiler will automatically change one type of data into another if it makes sense. For instance, if you assign an integer value to a floating-point variable, the compiler will convert the int to a float.


1 Answers

You can create custom types of all sorts, and if you want a "integer" type that is 16 bytes wide you could create a custom struct and pair two long longs together. But then you'd have to implement all the arithmetic on those types manually. This was quite common in the past when 16 bit (and even 32 bit) machines were most common, you'd have "bigint" libraries to do like 64-bit integer math. That's less useful now that most machines are either 64 bit or have long long support natively on 32 bit targets.

You used to see libraries with stuff like this quite often:

typedef struct _BigInt {
    unsigned long long high;
    unsigned long long low;
} BigInt;

// Arithmetic functions:

BigInt BigIntAdd(BigInt a, BigInt b);

// etc.

These have faded away somewhat because the current typical CPU register width is 64 bits, which allows for an enormous range of values, and unless you're working with very specialized data, it's not longer "common" in normal programming tasks to need values outside that range. As @datenwolf is explicit and correct about in the comments below, if you find the need for such functionality in production code, seek out a reliable and debugged library for it. (Writing your own could be a fun exercise, though this sort of thing is likely to be a bug farm if you try to just whip it up as a quick step along the way to other work.) As Eric P indicates in the comments above, clang offers a native way of doing this without a third party library.

(The weird ambiguities or equivalencies about the widths of long and long long are mostly historical, and if you didn't evolve with the platforms it's confusing and kind of unnecessary. See the comment on the question about this-- the C standard defines minimum sizes for the integer types but doesn't say they have to be different from each other; historically the types char, short, int, long and long long were often useful ways of distinguishing e.g. 8, 16, 32, and 64 bit sizes but it's a bit of a mess now and if you want a particular size modern platforms provide a uint32_t to guarantee size rather than using the "classic" C types.)

like image 55
Ben Zotto Avatar answered Sep 29 '22 02:09

Ben Zotto