#include <stdio.h> int main() { unsigned int num = 20; num = ~num; printf("%d\n", num); }
20
Previous Question Next Question
Your comments will be displayed only after manual approval.