+ 1
Please explain this program output?
#include <stdio.h> int main() { char*str="↔⬆🙂12345"; printf("%d",*str ); return 0; } //output -30
1 Odpowiedź
+ 6
Print the integer value of ther first character in str.
#include <stdio.h> int main() { char*str="↔⬆🙂12345"; printf("%d",*str ); return 0; } //output -30