`#include <stdio.h>
int main() {
char str[2];
printf("Enter anything ");
scanf("%s",str);
printf("%s",str);
}`
What will become the output if I input a value which is greater than given array size and why ?
`#include <stdio.h>
int main() {
char str[2];
printf("Enter anything ");
scanf("%s",str);
printf("%s",str);
}`
What will become the output if I input a value which is greater than given array size and why ?