19
-psr
7y

A C++ question. Correct answer will get you a virtual thug glasses & a cigar if you're into that , and upvotes (:

#include <stdio.h>

int main(void) {

int i = 4;

int* p = &i;

i = 8;

printf("i divided by *p is: %d\n", i/*p);

return 0;

}

What is the result of running this code?

Comments
Add Comment