Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

type defination in C++

typedef unsigned int u_int; //giving 'unsigned int' a name of u_int
 
//Now, doing this
u_int myNumber;
//Is the same as doing this (except with a different variable name of course)
unsigned int myNumber2;
Source by syntaxdb.com #
 
PREVIOUS NEXT
Tagged: #type #defination
ADD COMMENT
Topic
Name
2+3 =