getting wrong in CANDLE

#include<stdio.h>
//#include<conio.h>
int main()
{
int c,a[10],t,i,j,sml,k,l;
scanf("%d",&t);
for(i=0;i<t;i++)
{
for(j=0;j<10;j++)
scanf("%d",&a[j]);
sml=a[0];
c=0;
for(k=0;k<10;k++)
{
if(a[k]<sml)
{
sml=a[k];
c=k;
}
}
if(c==0)
{
printf(“1”);
for(l=0;l<=sml;l++)
printf("%d",c);

      } 
      else{
      		for(l=0;l<=sml;l++)
	 	printf("%d",c);
	 
	  }
    //  printf("\n");
 }
// getch();
 return 0;

Please post the link to the question and your code in proper format, you can use ideone.