Home » C Programming » Complicated Declarations

What will be the output of the program? #include<stdio.h> typedef unsigned long int uli; typedef uli u; int main() { uli a; u b = -1; a = -1; printf("%lu, %lu", a, b); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!