SlideShare a Scribd company logo
func_menu_mostrar.c
#include   <stdio.h>
#include   <stdlib.h>
#include   <string.h>
#include   "constant_definition.h"
#include   "case_constant_definition.h"
#include   "case_constant_sql_stmt_def.h"
#include   "constant_oracle_versions.h"
#include "extern_functions_orastat_principal.h"
#include "local_functions_preceded_calls.h"
int func_menu_mostrar (int version, int nro_opcion)
        {
        int conta_opcion;

        if ( ( nro_opcion < 0 ) || ( nro_opcion > MAX_NRO_OPCION ) )
                {
                printf
("---------------------------------------------------n");
                for ( conta_opcion=0; conta_opcion <= MAX_NRO_OPCION;
conta_opcion++)
                        {
                        printf ("[ %2d ] ",conta_opcion);
                        printf ("[ %s ] n",func_dyn_title_set
(version,conta_opcion) );
                        }
                printf
("...................................................n");
                }

       return 0;
       }




                                      Página 1

More Related Content

DOCX
PPTX
Como crear una matriz de 3x3 con c++ con menu
DOC
Ejercicios.
PDF
C언어 스터디 강의자료 - 3차시
PDF
C언어 스터디 강의자료 - 2차시
PDF
C언어 스터디 강의자료 - 4차시
DOCX
listing output program C
Como crear una matriz de 3x3 con c++ con menu
Ejercicios.
C언어 스터디 강의자료 - 3차시
C언어 스터디 강의자료 - 2차시
C언어 스터디 강의자료 - 4차시
listing output program C

What's hot (20)

DOCX
TXT
C Program : Sorting : Bubble,
PDF
Alocação Dinâmica em C
DOCX
Multiplicacion de matrices
PDF
Bcsl 033 data and file structures lab s4-3
TXT
Los fantastico
PDF
Infitopost notepad
PDF
Bcsl 033 data and file structures lab s1-2
DOCX
Fcfs Cpu Scheduling With Gantt Chart
DOCX
(Meta 4) ejemplo calcular la mitad de un numero dev c++
PDF
jQuery PLUGIN
PPT
Создание новых объектов
DOCX
Simulacion - Algoritmo congruencial cuadratico
DOCX
Program to remove Left factoring
PDF
07 3 do-while반복문
PDF
Monads
DOCX
Practica 10
C Program : Sorting : Bubble,
Alocação Dinâmica em C
Multiplicacion de matrices
Bcsl 033 data and file structures lab s4-3
Los fantastico
Infitopost notepad
Bcsl 033 data and file structures lab s1-2
Fcfs Cpu Scheduling With Gantt Chart
(Meta 4) ejemplo calcular la mitad de un numero dev c++
jQuery PLUGIN
Создание новых объектов
Simulacion - Algoritmo congruencial cuadratico
Program to remove Left factoring
07 3 do-while반복문
Monads
Practica 10
Ad

Viewers also liked (9)

DOC
привет 1 привет
DOCX
3 different spaces of art to be shown
PDF
Porta treco minnie pag 1
DOC
Test
PDF
Letter re broadcast service
PDF
PM-Ästhetische Solarkraft mit Zukunftsgarantie beim Solar Summit 2009.pdf
PDF
Ning Elevator Pitch-English/Korean
PPT
OFERTA: VIAJE A AMSTERDAM EN PUENTE DE NOVIEMBRE
PDF
Estudo dirigido ii estagio administração
привет 1 привет
3 different spaces of art to be shown
Porta treco minnie pag 1
Test
Letter re broadcast service
PM-Ästhetische Solarkraft mit Zukunftsgarantie beim Solar Summit 2009.pdf
Ning Elevator Pitch-English/Korean
OFERTA: VIAJE A AMSTERDAM EN PUENTE DE NOVIEMBRE
Estudo dirigido ii estagio administração
Ad

More from albertinous (20)

PDF
Orastat line command
PDF
Senten500.c
PDF
Resource1
PDF
Menu orastat.c
PDF
Local functions preceded_calls.h
PDF
Funct format sql_statement.c
PDF
Funciones auxiliares.c
PDF
Func time sleep.c
PDF
Func dyn title_set.c
PDF
Func dyn statement_set.c
PDF
Func dyn size_set.c
PDF
Func dyn proc_func_set.c
PDF
Func dyn column_set.c
PDF
Extern functions funciones_auxiliares.h
PDF
Decode name mode.c
PDF
Decode name lock.c
PDF
Decode lock mode.c
PDF
Decode command oracle.c
PDF
Constant oracle versions.h
PDF
Constant definition.h
Orastat line command
Senten500.c
Resource1
Menu orastat.c
Local functions preceded_calls.h
Funct format sql_statement.c
Funciones auxiliares.c
Func time sleep.c
Func dyn title_set.c
Func dyn statement_set.c
Func dyn size_set.c
Func dyn proc_func_set.c
Func dyn column_set.c
Extern functions funciones_auxiliares.h
Decode name mode.c
Decode name lock.c
Decode lock mode.c
Decode command oracle.c
Constant oracle versions.h
Constant definition.h

Func menu mostrar.c

  • 1. func_menu_mostrar.c #include <stdio.h> #include <stdlib.h> #include <string.h> #include "constant_definition.h" #include "case_constant_definition.h" #include "case_constant_sql_stmt_def.h" #include "constant_oracle_versions.h" #include "extern_functions_orastat_principal.h" #include "local_functions_preceded_calls.h" int func_menu_mostrar (int version, int nro_opcion) { int conta_opcion; if ( ( nro_opcion < 0 ) || ( nro_opcion > MAX_NRO_OPCION ) ) { printf ("---------------------------------------------------n"); for ( conta_opcion=0; conta_opcion <= MAX_NRO_OPCION; conta_opcion++) { printf ("[ %2d ] ",conta_opcion); printf ("[ %s ] n",func_dyn_title_set (version,conta_opcion) ); } printf ("...................................................n"); } return 0; } Página 1