Name: ____________________________________________________ Alpha: _____________ Section: ________

Describe help received: _________________________________________________________________

See the bottom for how to submit your work.

Due: Before 0800 on next class day

  1. (10 pts) Read today's lecture notes. Honestly declare how you read the notes.
    1. (10 pts) I read the notes carefully. I have a good understanding of the topics therein.
    2. (10 pts) I read the notes carefully, but I don't really understand the following points well:
      
      
      
    3. (0 pts) I didn't read the notes carefully.
  2. [10pts] For each of C++ statements below, give an equivalent C statement (or statements).
    C++C
    
    double* A = new double[10];
    
    
    
    
    
    
    
    
    delete [] A;
    
    
    
    
    
    
    
    
    string s; 
    s = "hello";
    
    
    
    
    
    
    
    
    int n;
    double x;
    cin >> n >> x;
    
    
    
    
    
    
    
    
    string s;
    cin >> s;
    
    
    
    
    
    
    
Bring to class