Typedef in C - Printable Version +- QP School (https://qomplainerzschool.lima-city.de) +-- Forum: Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=3) +--- Forum: C 18 Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=32) +--- Thread: Typedef in C (/showthread.php?tid=5103) |
Typedef in C - Qomplainerz - 07-25-2023 typedef is used to create aliases for data types. typedef unsigned int uint; int main() { uint x = 10; printf("%u\n", x); // Output: 10 return 0; } |