waht is teh use of typedef in c++ code example
Example: whats a typedef in c++
#include <iostream>
int main(){
typedef unsigned int ui;
ui i = 5, j = 8;
std::cout << "i = " << i << std::endl;
std::cout << "j = " << j << std::endl;
return 0;
}