Answer (Choose 1 answer)
What will be the output of this program?
#include<stdio.h>
void main()
{
int num[26], temp;
num[0] = 100;num[25] = 200;
temp = num[25];num[25] = num[0];num[0] = temp;printf ("%d %d", num[0], num[25]);
}
A. 0 25
B. 25 100
C. 0 26
D. 200 100
Exit 16