Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,974 questions

51,918 answers

573 users

How to check if integer multiplication will overflow in C

1 Answer

0 votes
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>

bool multiplyWillOverflow(uint64_t x, uint64_t y) {
    if (x <= 1 || y <= 1) {
        return false;
    }

    uint64_t d = x * y;
    
    return d / y != x;
}

int main() {
    uint64_t x = 3, y = 1472783642;
    printf("%s\n", multiplyWillOverflow(x, y) ? "true" : "false");

    x = 9223372036854775807;
    y = 3;
    printf("%s\n", multiplyWillOverflow(x, y) ? "true" : "false");

    return 0;
}



/*
run:

false
true

*/

 



answered May 18, 2025 by avibootz

Related questions

...