>>25749335
>a function cannot be a dead end and has to return something
It doesn't. You can just look at the assembly output:
void foo() {
return;
}
int bar() {
return 1;
}
compiles to
foo():
ret
bar():
mov eax, 1
ret
The second function sets a register to the value 1, thus returning a value. The first function doesn't set any registers or do anything, it just returns.
>ok i see, but why do that if i can check the one i'm assigning?
I think the only time you would do this in practice is when you check the return value of a function. I can't think of a real example, but something like
if (x = foo())
printf("%d\n", x);
Also modern compilers will complain about this because most of the time such code is written by mistake, so you would actually write if ((x = foo())) to make the compiler shut up about it.