“O que é tipedef” Respostas de código

O que é tipedef

It is used to choose an alternative name of existing datatype mostly 
used with user-defined data types
Ahmad Mujtaba

typedef

/* Its a variable for the datatype
Example: We define “number” as a synonym for int.
*/

typedef int number
number x = 7;

number square( number y ) {
	return y * y ;
}

/* Now if we decide that we want a float we only have to change it in one place */
Obedient Oystercatcher

Respostas semelhantes a “O que é tipedef”

Perguntas semelhantes a “O que é tipedef”

Mais respostas relacionadas para “O que é tipedef” em C++

Procure respostas de código populares por idioma

Procurar outros idiomas de código