Thursday, June 6, 2019

Write a program to that uses a function with no arguments and no return values

/* ***********************************************
    Write a program to that uses a function with no arguments and no return values

 date:06-06-2019
 created by:ANIL DURGAM

*****************************************************/

#include <stdio.h>
#include <stdlib.h>


void dispmenu(void);

void main()
{
int choice;
 dispmenu();
  printf("Enter your choice :\n");
   scanf("%d",&choice);

}
void dispmenu(void )
{
     printf(" 1. Create database\n");
     printf("2.Insert new record\n");
     printf("3.Modify a record\n");
     printf("4.Delete a record\n");
     printf("5.Display all records\n");
     printf("6.Exit\n");
}

output::;





Note:

please send the questions which you are facing problem in C Language.

also write interview questions which are you faced in during interview related to C Language.

so i can try to solve them and send you back.

No comments:

Post a Comment

python class topic video