Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 976 Bytes

File metadata and controls

42 lines (33 loc) · 976 Bytes

This is an <h1> header, which is the largest

This is an <h2> header

This is an <h3> header

This is an <h4> header

This is an <h5> header
This is an <h6> header, which is the smallest

Activity: Adding an image

Image of Yaktocat

Activity: Adding a code example

#include <string.h> //strcpy()
#include <stdio.h> //printf()

#define MAXSTRING 100

int main(void){
  char c = 'a', *p, s[MAXSTRING];
  p = &c;
  printf("%c%c%c ", *p, *p + 1, *p + 2);
  strcpy(s, "ABC");
  printf("%s %c%c%s\n", s, *s + 6, *s + 7, s + 1);
  strcpy(s, "she sells sea shells by the seashore");
  p = s + 14;
  for( ; *p != '\0'; ++p){
    if(*p == 'e') *p = 'E';
    if(*p == ' ') *p = '\n';
  }
  printf("%s\n", s);
  return 0;
}

Activity: Add a task list

  • Turn on GitHub Pages
  • Outline my portfolio
  • Introduce myself to the world