Mert Gör 79f83aa190
int main() {
unsigned int a; // Change 'int' to 'unsigned int'

    printf("Enter your number: ");
    scanf("%x", &a); // Now 'a' matches '%x' expected type
    printf("a = %u\n", a); // Use '%u' to correctly print an unsigned int

    return 0;
}
2025-04-12 22:09:27 +03:00
..
2025-03-18 13:39:41 +03:00
2024-08-25 11:07:20 +03:00
2025-03-18 14:06:43 +03:00
2025-03-18 13:58:35 +03:00
2025-04-12 22:09:27 +03:00
2025-03-18 14:21:16 +03:00
2025-03-18 14:12:50 +03:00
2025-03-18 14:39:40 +03:00
2025-03-18 14:29:06 +03:00
2025-03-18 14:02:23 +03:00