Category: C Language

Program utilizing construction to retailer data of two staff (emp_id, title,wage) and show the main points of the worker having wage larger

Programmer's Academy

               Code:  #embrace <stdio.h> struct worker {     char title[20];     int  id;     float wage; }; int most important() { struct worker e[10]; int i; printf(“Particulars of Workern“); for(i=0;i<2;i++)

Continue Reading →

program for pointer in c

Programmer's Academy

                                    Code: #embody <stdio.h> int predominant() {     int a[100];     int i,n,sum=0;     int *p;     printf(“Enter a Quantity:”);     scanf(“%d“,&n);     printf(“Enter %d parts:”,n);

Continue Reading →