You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
217 B

  1. // Copied and fixed the code from the slides
  2. #include <stdio.h>
  3. int main() {
  4. char *s;
  5. char foo[] = "Hello World";
  6. s = foo;
  7. printf("s is %s\n", s);
  8. printf("s[0] is %c\n", s[0]);
  9. return (0);
  10. }