|
|
|
|
|
|
"ABC" (double quotation) is for a string of characters and is an array (pointer).
|
#include <stdio.h> int main() { char s[3] = "ABC"; printf("%s\n", s); return 0; } |
#include <stdio.h> int main() { char str[100]; printf("Enter string = "); scanf("%s", str); printf("%s\n",str); return 0; } |
#include <stdio.h> #include <string.h> int main() { char c1[] = "ABCDE", c2[6]; strcpy(c2,c1); printf("%s\n",c2); return 0; } |
#include <stdio.h> #include <string.h> int main() { char s[100]; printf("Enter \"MAE2360\" = "); scanf("%s", s); if (strcmp(s,"MAE2360") == 0) printf("MAE2360 was entered correctly.\n"); else printf("Wrong. %s was entered.\n",s); return 0; } |
#include <stdio.h> #include <string.h> int main() { char c[50]; printf("Enter string = "); scanf("%s", c); printf("You entered %s\n", c); printf("Its length is %d\n", strlen(c)); return 0; } |
Notion | Meaning |
$ a.out > filename | output to file |
$ a.out >> filename | append output to file |
$ a.out < filename | get input from file |
$ gcc myprogram.c $ a.out > result.dat $ more result.dat |
$ gcc myprogram.c $ a.out < data.dat > result.dat $ more result.dat |
c:\dir > filelist.dat |
#include <stdio.h> int main() { FILE *fp; fp = fopen("filename","w"); /* write something on fp */ fclose(fp); return 0; } |
#include <stdio.h> int main() { FILE *fp; fp=fopen("junk.dat","w"); fprintf(fp,"Hello!\n"); fclose(fp); return 0; } |
#include <stdio.h> int main() { FILE *fp; float a,b,c; fp=fopen("junk.dat","r"); fscanf(fp,"%f %f %f", &a, &b, &c); printf("%f %f %f", a,b,c); fclose(fp); return 0; } |
#include <stdio.h> int main() { FILE *fp1, *fp2; float a,b,c; fp1=fopen("junk1.dat","w"); fp2=fopen("junk2.dat","w"); fprintf(fp1,"This is the first file.\n"); fprintf(fp2,"This is the second file.\n"); fclose(fp1); fclose(fp2); return 0; } |
$ gcc -lm add.c -o add $ junk (interactive session) |
$ gcc -lm add.c -o add $ junk 3421 8756 (executes program to manipulate 3421 and 8756 and prints results) |
int main(int argc, char *argv[]) |
#include <stdio.h> int main(int argc, char *argv[]) { int i; printf("Number of parameters = %d\n", argc); for(i=0; i<argc; i++) printf("%d: %s\n", i, argv[i]); return 0; } |
#include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { printf("%d\n", atoi(argv[1])); return 0; } |
#include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { int i; int b[100]; /* reserve ample space*/ for (i=1; i< argc; i++) b[i]=atoi(argv[i]); for (i=1; i< argc ; i++) printf("%d\n", b[i]); return 0; } |
#include <stdio.h> int main() { int a[4][2]={{89, 76},{65, 91}, {56, 78}, {49, 56}}; return 0; } |
#include <stdio.h> struct student{ char *ID; int Midterm; int Final; char Grade; }; int main() { struct student smith={"1000123456", 89, 98, 'A'}, doe={"1000123457", 45, 53, 'F'}, jones={"1000123458", 67, 80, 'C'}; printf("%s\n", smith.ID); printf("%c\n", jones.Grade); printf("%d\n", doe.Midterm); doe.Midterm=79; doe.Grade='D'; printf("%c\n", doe.Grade); return 0; } |
#include <stdio.h> struct student{ char *Name; int Midterm; int Final; char Grade; }; int main() { struct student fall[15]; int i; FILE *data; data=fopen("junk.dat", "r"); for (i=0;i<15;i++) fscanf(data, "%s %d %d %c", fall[i].Name, &fall[i].Midterm, &fall[i].Final, &fall[i].Grade); fclose(data); printf("%d\n", fall[0].Midterm); printf("%s\n", fall[0].Name); return 0; } |
Doe 45 47 F Jones 89 65 B Smith 76 79 B ........ |
#include <stdio.h> struct student{ char *Name; int Midterm; int Final; char Grade; }; int main() { struct student fall[3]= { {"Jones", 45, 65, 'D'}, {"Doe", 98, 79, 'B'}, {"Smith", 67, 76, 'C'}}; /* .................. */ printf("%s %d %d %c\n", fall[0].Name, fall[0].Midterm, fall[0].Final, fall[0].Grade); return 0; } |
#include <stdio.h> struct student{ char *Name; int Midterm; int Final; char Grade; }; int main() { struct student Smith={"David Smith", 12, 45, 'F'}, *ptr; ptr = &Smith; /* .................. */ printf("%s %d %d %c\n", ptr->Name, ptr->Midterm, ptr->Final, ptr->Grade); return 0; } |
#include <stdio.h> typedef struct { char *Name; int Midterm; int Final; char Grade; } student; int main() { student Jones={"Jones", 12, 45, 'F'}, *ptr; ptr = &Jones; /* .................. */ printf("%s\n", ptr->Name); return 0; } |
#include <stdio.h> typedef struct {float Real; float Im;} Complex; Complex ComplexAdd(Complex z1, Complex z2) { Complex z; z.Real = z1.Real + z2.Real; z.Im = z1.Im + z2.Im; return z; } int main() { Complex z1, z2, z; printf("Enter real and imaginary parts of z1 separated by space = "); scanf("%f %f", &z1.Real, &z1.Im); printf("Enter real and imaginary parts of z2 separated by space = "); scanf("%f %f", &z2.Real, &z2.Im); z = ComplexAdd(z1, z2); printf("%f + %f I \n", z.Real, z.Im); return 0; } |