InterviewSolution
Saved Bookmarks
| 1. |
What is the output of the following program? #include void fun (int a, int b){printf("%d", b);printf("%d", a);}int main(){int arr[] = {1, 2, 3, 4);fun (arr[1], arr[3]);return 0;} |
| Answer» 4 and 2hahahhahahahahahahaha | |