switch(start)
{case 0:printf("");
j=1;
break;
case 1:printf("\t");
j=2;
break;
case 2:printf("\t\t");
j=3;
break;
case 3:printf("\t\t\t");
j=4;
break;
case 4:printf("\t\t\t\t");
j=5;
break;
case 5:printf("\t\t\t\t\t");
j=6;
break;
case 6:printf("\t\t\t\t\t\t");
j=7;
break;
}
start takes input from user, any way to shorten this piece of code??????? Any help is appreciated!!!!!!!!