// pointers00.cpp int main() { int a = 1; int b = 2; int c = 3; a = b + c; float f = a + b + c; f /= 3; return 0; }