0
Why am i getting the output like this "lvalue required as decrement operand" when i run this program ?
#include <stdio.h> int main() { int a, b; a=-3--3; b=-3--(-3); printf("a= %d b= %d", a,b); return 0; }
0 Réponse
#include <stdio.h> int main() { int a, b; a=-3--3; b=-3--(-3); printf("a= %d b= %d", a,b); return 0; }