Category: C Refresh

23
May
2017

Arguments from Command Line Console

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++) {…

22
May
2017

Problem 85: Product

Create a structure named Product with following two fields- 1. name (string) 2. price (double) Then create…

22
May
2017

Struct Problem 1: 101cproblems

Problem 81: Struct GPA Create a simple structure named Student that holds the following variables- i. id…

21
May
2017

Typedef Enum Union Project

code: #include<stdio.h> typedef union { double weight; int size; char color[10]; } Description; typedef struct { int…

21
May
2017

Typedef Enum

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)…

21
May
2017

Another Good Example of Struct using Function and Pointer

code: #include<stdio.h> typedef struct { int roll; char name[20]; double gp; double phy,chem,math; }sTudent; void inputStudent(sTudent *sp)…