Tell me what will the line of code below print out and why?

Submitted by: Muhammad
#include <iostream>

int main(int argc, char **argv)
{
std::cout << 25u - 50;
return 0;
}
Submitted by: Muhammad

Read Online C++ Programmer Job Interview Questions And Answers