Twise Random

A site about computer science .
Skip to content
  • apple
  • android
  • c
  • cpp
  • data structure and algorithms
  • macos
  • python
  • tutorials

Tag: tutorial

How to enter special characters in macOS , freebsd , Windows and html ?

Posted on December 20, 2020February 23, 2021 by mohamad wael

 

Sometimes it is necessary to insert some special characters , for example , e accent which is é , or to type in another language , such as Arabic , French , or Hebrew .

If it is to … Read More

unicode tutorial

What is char , signed char , unsigned char , and character literals in C ?

Posted on December 15, 2020December 21, 2020 by mohamad wael

 

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

c tutorial

What is a float , double , long double and a floating point literal in C ?

Posted on December 14, 2020February 25, 2021 by mohamad wael

 

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

c floating point, literal, tutorial

What is an enum in C ?

Posted on December 13, 2020December 22, 2020 by mohamad wael

 
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

c enumeration constant, enumerator list, tutorial
  • «
  • 1
  • 2
  • 3
  • 4