+ 1
How to check biggest number
How to check biggest number in C++ from many numbers and print on screen.
4 Answers
+ 2
unsigned x:
256^sizeof(x)-1
signed y:
256^sizeof(y)/2-1
I don't know any powering method in C(++)
Sorry I misunderstood your problem.
+ 1
Use for loops.
https://code.sololearn.com/cwRVvRtQ8324/?ref=app
+ 1
CarrieForle it's good but can we do this with only other data types without using arrays. Like int float.
+ 1
CarrieForle it's good but can we do this with only other data types without using arrays. Like int float.