Tutorial de Lenguaje C                                                                                                   Dr. Roberto Gómez


ESTRUCTURA GENERAL DE UN PROGRAMA EN C

tipo var1;
tipo var2;

tipo f1(par1)
tipo par1;
{     tipo var3;

      {   tipo var4;
           Bloque 1
           Bloque2
      }

}
tipo var5;

int main()
{
tipo var6;

}
 

MENÚ PRINCIPAL