Posts by Leonardo Oliveira Sdd • 23 points
1 post
-
2
votes2
answers503
viewsQ: What is the error in this Code:
I’m trying to compile this code,do use head C but it’s returning me errors #include <stdio.h> void go_south_east(int* lat, int* lon) { *lat = *lat -1; *lon = *lon - 1; } int main() { int…