c | Twise Random https://twiserandom.com A site about computer science . Fri, 27 Aug 2021 16:02:11 +0000 en-US hourly 1 https://wordpress.org/?v=5.8.1 https://twiserandom.com/wp-content/uploads/2019/08/cropped-abstract-color-32x32.jpg c | Twise Random https://twiserandom.com 32 32 sizeof operator in c https://twiserandom.com/c/sizeof-operator-in-c/ Thu, 26 Aug 2021 19:48:50 +0000 https://twiserandom.com/?p=8189

What is the sizeof operator?

The sizeof operator, returns the size of an expression, or of an object type in C. An expression is for example 1 + 2, an object is any region of memory, and a … Read More

The post sizeof operator in c first appeared on Twise Random.]]>

What is the sizeof operator?

The sizeof operator, returns the size of an expression, or of an object type in C. An expression is for example 1 + 2, an object is any region of memory, and a … Read More

The post sizeof operator in c first appeared on Twise Random.]]>
Conversion and operations on the non arithmetic data types in C https://twiserandom.com/c/conversion-and-operations-on-the-non-arithmetic-data-types-in-c/ Tue, 29 Dec 2020 04:49:07 +0000 https://twiserandom.com/?p=5978  

What are the different C data types ?

The C standard groups its available types , in two large categories : the object types , and the function types .

The object types , in C are :

Integer 

Read More

The post Conversion and operations on the non arithmetic data types in C first appeared on Twise Random.]]>
 

What are the different C data types ?

The C standard groups its available types , in two large categories : the object types , and the function types .

The object types , in C are :

Integer 
Read More The post Conversion and operations on the non arithmetic data types in C first appeared on Twise Random.]]>
What is widening , truncation , promotion , and conversion between , the different C , arithmetic data types ? https://twiserandom.com/c/what-is-widening-truncation-promotion-and-conversion-between-the-different-c-arithmetic-data-types/ Wed, 23 Dec 2020 19:50:31 +0000 https://twiserandom.com/?p=4832  
The arithmetic data types in C , are the integer types , such as int or unsigned long , and the floating point types , such as float , or long double .

Conversion of the integer types

What

Read More

The post What is widening , truncation , promotion , and conversion between , the different C , arithmetic data types ? first appeared on Twise Random.]]>
 
The arithmetic data types in C , are the integer types , such as int or unsigned long , and the floating point types , such as float , or long double .

Conversion of the integer types

What

Read More The post What is widening , truncation , promotion , and conversion between , the different C , arithmetic data types ? first appeared on Twise Random.]]>
What is char , signed char , unsigned char , and character literals in C ? https://twiserandom.com/c/what-is-char-signed-char-unsigned-char-and-character-literals-in-c/ Tue, 15 Dec 2020 18:22:04 +0000 https://twiserandom.com/?p=5238  

What is char , unsigned char , and signed char ?

The char type in C , has a size of 1 byte . The size of a byte , as defined on a given machine , can be … Read More

The post What is char , signed char , unsigned char , and character literals in C ? first appeared on Twise Random.]]>
 

What is char , unsigned char , and signed char ?

The char type in C , has a size of 1 byte . The size of a byte , as defined on a given machine , can be … Read More

The post What is char , signed char , unsigned char , and character literals in C ? first appeared on Twise Random.]]>
What is a float , double , long double and a floating point literal in C ? https://twiserandom.com/c/what-is-a-float-double-long-double-and-a-floating-point-literal-in-c/ Mon, 14 Dec 2020 20:49:42 +0000 https://twiserandom.com/?p=5236  

What is float , double , long double ?

To store numbers in a computer , an algorithm must be used . The C standard does not specify the algorithm , or the encoding to be used , for … Read More

The post What is a float , double , long double and a floating point literal in C ? first appeared on Twise Random.]]>
 

What is float , double , long double ?

To store numbers in a computer , an algorithm must be used . The C standard does not specify the algorithm , or the encoding to be used , for … Read More

The post What is a float , double , long double and a floating point literal in C ? first appeared on Twise Random.]]>
What is an enum in C ? https://twiserandom.com/c/what-is-an-enum-in-c/ Sun, 13 Dec 2020 18:19:08 +0000 https://twiserandom.com/?p=5308  
An enum in C is used to enumerate things . For example , to enumerate the days of the week , such as Monday , Tuesday or Wednesday , or to enumerate error codes , such as OK or … Read More

The post What is an enum in C ? first appeared on Twise Random.]]>
 
An enum in C is used to enumerate things . For example , to enumerate the days of the week , such as Monday , Tuesday or Wednesday , or to enumerate error codes , such as OK or … Read More

The post What is an enum in C ? first appeared on Twise Random.]]>
What is an identifier in c ? https://twiserandom.com/c/what-is-an-identifier-in-c/ Thu, 19 Nov 2020 21:27:06 +0000 https://twiserandom.com/?p=4447 What is an identifier ?

 
An identifier , is used to denote an object type in C . An object in C is a region of memory , used for data storage .

int x ; /*
x is 

Read More

The post What is an identifier in c ? first appeared on Twise Random.]]>
What is an identifier ?

 
An identifier , is used to denote an object type in C . An object in C is a region of memory , used for data storage .

int x ; /*
x is 
Read More The post What is an identifier in c ? first appeared on Twise Random.]]>
The compilation process of a c source file https://twiserandom.com/c/the-compilation-process-of-a-c-source-file/ Wed, 18 Nov 2020 20:23:26 +0000 https://twiserandom.com/?p=4356 Compiling a C source file , into an executable program , involves multiple steps . They are as follow :

Preparation of the source files

The first step in compiling a C source file , is the preparation of the Read More

The post The compilation process of a c source file first appeared on Twise Random.]]>
Compiling a C source file , into an executable program , involves multiple steps . They are as follow :

Preparation of the source files

The first step in compiling a C source file , is the preparation of the Read More

The post The compilation process of a c source file first appeared on Twise Random.]]>
What is a character , wide character , and multibyte character in c ? https://twiserandom.com/c/what-is-a-character-wide-character-and-multibyte-character-in-c/ Sun, 15 Nov 2020 15:20:01 +0000 https://twiserandom.com/?p=4132 Characters

A char is a region of memory , formed of bits , large enough to hold any character of the basic execution character set . A char is the encoding , of the basic execution character set .

The … Read More

The post What is a character , wide character , and multibyte character in c ? first appeared on Twise Random.]]>
Characters

A char is a region of memory , formed of bits , large enough to hold any character of the basic execution character set . A char is the encoding , of the basic execution character set .

The … Read More

The post What is a character , wide character , and multibyte character in c ? first appeared on Twise Random.]]>
C : source , execution , basic , and extended character sets https://twiserandom.com/c/c-source-execution-basic-and-extended-character-sets/ Sat, 14 Nov 2020 15:41:51 +0000 https://twiserandom.com/?p=4048  
There are two character sets in C . The first one is the source character set , which is the set of characters , in which a C source file , is written .

So the source character set … Read More

The post C : source , execution , basic , and extended character sets first appeared on Twise Random.]]>
 
There are two character sets in C . The first one is the source character set , which is the set of characters , in which a C source file , is written .

So the source character set … Read More

The post C : source , execution , basic , and extended character sets first appeared on Twise Random.]]>