Why I get the following output "-858993460" when using the following code:
#include<stdio.h>
int aNumber(void);
int main()
{
printf("%d", aNumber());
return 0;
}
int aNumber(void) {
int x = 1;
}
I am just curious. I know I need to use "return" to get the actual int 1 on my "printf"