reddensoft
Banned-Spam
- Oct 7, 2022
- 84
- 9
What is the output of the below code?
#include <stdio.h>
int main()
{
int arr[5]={10,20,30,40,50,21};
printf("%d", arr[6]);
return 0;
}
#include <stdio.h>
int main()
{
int arr[5]={10,20,30,40,50,21};
printf("%d", arr[6]);
return 0;
}