I recently stared learning C. everything was fine but suddenly when today I was trying the 2d array with CodeBlocks Windows Defender constantly showing that my compiled file is a "Trojan:Win32/Fuerboos.C!cl" . What to do? Any help please
I didn't install anything except MinGW & Latest CodeBlocks
#include <stdio.h>
int main()
{
int row,col,a[5][3]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
for(row=0; row<5; row++)
{
for(col=0; col<3; col++)
printf("%d ", a[row][col]);
printf("\n");
}
}