Category: C Refresh
code: #include<stdio.h> int main(int argc, char **argv) //default parameter { printf(“hello world\n”); printf(“ARGC=%d\n”,argc); int i; for(i=0;i<argc;i++) {…
Create a structure named Product with following two fields- 1. name (string) 2. price (double) Then create…
Problem 81: Struct GPA Create a simple structure named Student that holds the following variables- i. id…
code: #include<stdio.h> typedef union { double weight; int size; char color[10]; } Description; typedef struct { int…
code: #include<stdio.h> typedef enum { SUN,MON,TUES,WED=70,THURS=80,FRI,SAT } days_of_week; typedef enum { FALSE,TRUE }Boolean; Boolean isEven(int n){ if(n%2==0)…
code: #include<stdio.h> typedef struct { int roll; char name[20]; double gp; double phy,chem,math; }sTudent; void inputStudent(sTudent *sp)…
Recent Comments