1 / 47

REACH TEST REVIEW

CECS 130 EXAM 1. REACH TEST REVIEW. Can you predict the printout?. int main() { printf (“%c %c <br>&quot;, 'a', 65); printf (&quot;%d %ld<br>&quot;, 1977, 650000L); printf (&quot; %10d <br>&quot;, 1977); printf (&quot;%010d <br>&quot;, 1977); printf (&quot;floats: %4.2f <br>&quot;, 3.1416);

sine
Télécharger la présentation

REACH TEST REVIEW

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CECS 130 EXAM 1 REACH TEST REVIEW

  2. Can you predict the printout? • int main() { printf (“%c %c \n", 'a', 65); printf ("%d %ld\n", 1977, 650000L); printf (" %10d \n", 1977); printf ("%010d \n", 1977); printf ("floats: %4.2f \n", 3.1416); printf ("%s \n", "A string"); return 0; } }

  3. Printouts printf (“%c %c \n", 'a', 65); aA printf ("%d %ld\n", 1977, 650000L); 1977650000 printf (" %10d \n", 1977); 1977 printf ("%010d \n", 1977); 0000001977 printf ("floats: %4.2f \n", 3.1416); 3.14 printf ("%s \n", "A string"); A string

  4. Review Printing with Precision

  5. Switch-Case Statments

  6. Example Switch-Case Statement

  7. While(){} and Do{} While() • What’s the syntax of • While(){} • Do{} While() • What’s the difference between While and Do{} While()?

  8. Answers • while ( condition ) { Code to execute while the condition is true } • do { } while ( condition ); • Do{} while() executes code at least once!

  9. FOR Loops • Use when the number of iterations is already known • Syntax: • for ( variable initialization; condition; variable increment/decrement) • { • Code to execute while the condition is true • }

  10. Can you predict the print out? • #include <stdio.h> • int main() { • int x; • for ( x = 0; x < 10; x++ ){ • printf( "%d\n", x ); • } • getchar(); • }

  11. Practice FOR Loops • Write a program using a FOR Loop to display all of the multiples of 5 from 0 to 100.

  12. Answer • #include <stdio.h> • int main() { • int x; • for ( x = 0; x < =20; x++ ) • { • printf( "%d\n", x*5 ); • } • getchar(); • }

  13. BREAK and CONTINUE • Use to manipulate flow in loops • What does a Break statement do when executed within a loop? • What does a Continue statement do when executed within a loop?

  14. Break and Continue Example • #include <stdio.h> • main() { • int x; • for ( x = 10; x >5; x-- ) • { • if (x==7) • break; • } • printf( “\n %d \n ”, x ); • } • #include <stdio.h> • main() { • int x; • for ( x = 10; x >5; x-- ) • { • if (x==7) • continue; • printf( “\n %d \n ”, x ); • } • }

  15. Function Prototypes & Definitions • Function Prototype Syntax return-type function_name ( arg_type arg1, ..., arg_typeargN) • Function Prototypes tell you the data type returned by the function, the data type of parameters, how many parameters, and the order of parameters • Function definitions implement the function prototype • Where are function prototypes located in the program? • Where do you find function definitions?

  16. Function Prototypes • Where are function prototypes located in the program? • Answer: before the Main(){} Function! • Function Definitions are self contained outside of the Main(){} function

  17. Calling Functions • #include <stdio.h> • intmult ( int x, int y ); • int main() { • int x; • int y; • printf( "Please input two numbers to be multiplied: " ); • scanf( "%d", &x ); • scanf( "%d", &y ); • printf( "The product of your two numbers is %d\n", mult( x, y ) ); • getchar(); • } • intmult (int x, int y) • { • return x * y; • }

  18. What’s Wrong with This Code? • #include <stdio.h> • Void printReportHeader(); • main() • { • printReportHeader; • } • void printReportHeader() • { • printf(“\n Column1\tColumn2\tColumn3\tColumn4 \n”) • }

  19. Can You Pick Out the Local and Global Variables? • #include <stdio.h> • void printNumbers(); • intiNumber; • main() { • int x; • for(x=0, x<10,x++){ • printf(“\n Enter a number:”); • scanf(“%d”, &iNumber); • printNumbers(); • } • } • void printNumbers() • { • printf(“\n Your number is: %d \n”, iNumber); • }

  20. Variable Scope • Variable scope defines the life time of a variable • Local Scope: defined within functions and loses scope after function is finished. Can reuse in other functions (ex. p.123) • Global Scope: defined outside of functions and can be accessed by multiple functions

  21. How to Declare a One-Dimensional Array • Can you declare a one-dimensional array made up of 10 integers? • Answer: intiArray[10] • How to declare an Array • intiArray[10]; • float fAverages[30]; • double dResults[3]; • short sSalaries [9]; • char cName[19]; 18 characters and 1 null character

  22. How to Initialize a 1-D Array • Why do we initialize? Because memory spaces may not be cleared from previous values when arrays are created • Can initialize an array directly • Example intiArray[5]={0,1,2,3,4}; • Can initialize an array with a loop such as FOR()

  23. Example of Initializing an Array Using a For() Loop • #include <stdio.h> • main() • { • int x; • intiArray[5]; • for( x=0; x < 5 ; x++) • { • iArray[x] = 0; • } • }

  24. Printing Arrays • Can you add code to print out the values of the program below? • #include <stdio.h> • main() • { • int x; • intiArray[5]; • for( x=0; x < 5 ; x++) • { • iArray[x] = 0; • } • }

  25. Answer • #include <stdio.h> • main() • { • int x; • intiArray[5]; • for( x=0; x < 5 ; x++) • { • iArray[x] = 0; • } • for(x=0 ; x<5; x++) • { • printf(“\n The value of iArray index %d is %d \n”,x, iArray[x]); • } • }

  26. Accessing the elements in an array • How do you search through an array?

  27. #include <stdio.h> • main() • { • int x; • intiValue; • intiFound = -1; • intiArray[5]; • for( x=0; x < 5 ; x++) • iArray[x] = (x+x); • printf(“\n Enter value to search for:”); • scanf(“%d”, &iValue); • for(x=0 ; x<5; x++) • { • if( iArray[x] ==iValue){ • iFound =x; • break; • ) • } • if(iFound >-1) • printf(“\n I found your search value in element %d \n”,iFound); • else • printf(“\n Sorry, your search value was not found \n”); • }

  28. Manipulating Strings

  29. String Examples #include <stdio.h> #include <string.h> main(){ char *str1 = “Michael”; char str2[] = “Vine”; printf(“\nThe length of string 1 is %d \n”, strlen(str1)); printf(“The length of string 2 is %d\n”,strlen(str2)); }

  30. String Examples #include <stdio.h> #include <string.h> void convertL(char *); main(){ char name1[] = “Michael”; convertL(name1); } void convertL(char *str){ int x; for ( x = 0; x <=strlen(str) ; x++) str[x] = tolower(str[x]); printf(“\nThe name converted to lower case is %s\n”, str); }

  31. Data File Hierarchy

  32. Quiz Kelly 11/12/86 6 Louisville Allen 04/05/77 49 Atlanta Chelsea 03/30/90 12 Charleston How many fields are there? How many records are there? How many bytes are there in the first record? How many bits are there in “Kelly”?

  33. Data Control Do you know the syntax for each of these, used to read and write to data files? • Pointers: think of it as the memory address of the file • fopen() • fclose() • fscanf() • fprintf()

  34. fopen(“file name”, “Mode”) • fopen() returns a FILE pointer back to the pRead variable • #include <cstdio> • Main() • { • FILE *pRead; • pRead = fopen(“file1.dat”, “r”); • if(pRead == NULL) • printf(“\nFile cannot be opened\n”); • else • printf(“\nFile opened for reading\n”); • }

  35. Common Text File Modes

  36. fclose(file pointer) • Pretty basic.

  37. fscanf(FILE pointer, “data type”, variable in which to store the value) • Reads a single field from a data file • “%s” will read a series of characters until a white space is found • can do fscanf(pRead, “%s%s”, name, hobby);

  38. #include <stdio.h> • Main() • { • FILE *pRead; • char name[10]; • pRead = fopen(“names.dat”, “r”); • if( pRead == NULL ) • printf( “\nFile cannot be opened\n”); • else • printf(“\nContents of names.dat\n”); • fscanf( pRead, “%s”, name ); • while( !feof(pRead) ) { • printf( “%s\n”, name ); • fscanf( pRead, “%s”, name ); • } • }

  39. Quiz Kelly 11/12/86 6 Louisville Allen 04/05/77 49 Atlanta Chelsea 03/30/90 12 Charleston Can you write a program that prints out the contents of this information.dat file?

  40. #include <stdio.h> • main() • { • FILE *pRead; • char name[10]; • char birthdate[9]; • float number; • char hometown[20]; • pRead = fopen(“information.dat”, “r”); • if( pRead == NULL ) • printf( “\nFile cannot be opened\n”); • else • fscanf( pRead, “%s%s%f%s”, name, birthdate, &number, hometown ); • while( !feof(pRead) ) { • printf( “%s \t %s \t %f \t %s\n”, name, birthdate, number, hometown ); • fscanf( pRead, “%s%s%f%s”, name, birthdate, &number, hometown ); • } • }

  41. fprintf(FILE pointer, “list of data types”,list of values or variables) • The fprintf() function sends information (the arguments) according to the specified format to the file indicated by stream. fprintf() works just like printf() as far as the format goes.

  42. #include <stdio.h> Main() { FILE *pWrite; char fName[20]; char lName [20]; float gpa; pWrite = fopen(“students.dat”,”w”); if( pWrite == NULL ) printf(“\nFile not opened\n”); else printf(“\nEnter first name, last name, and GPA separated” printf(“Enter data separated by spaces:”); scanf(“%s%s%f”, fName, lName, &gpa); fprintf(pWrite, “%s \t %s \t % .2f \n”, fName, lName, gpa); fclose(pWrite); }

  43. Quiz • Can you write a program that asks the user for their • Name • Phone Number • Bank account balance And then prints this information to a data file called accounts.dat ?

  44. Questions?

  45. References • TEXTBOOK RESOURCE: C Programming for the Absolute Beginner 2nd Edition by Michael Vine • www.cprogramming.com

  46. Questions?

  47. References • TEXTBOOK RESOURCE: C Programming for the Absolute Beginner 2nd Edition by Michael Vine • www.cprogramming.com

More Related