pwncollege
DojosLeaderboardCommunity
Back to intro-to-programming-languages

Project 2.3 Pig Latin & Pointers

intro-to-programming-languages
0/4 challenges completed

[ ← Module List ]

In this challenge set, you will be building a Pig Latin translator. You will be building on your prior skills and also gaining experience with some of these skills:

  • Get the length of a string using strlen
  • Concatenate strings using strcat
  • Compare strings using strcmp
  • Copy one c-string to another using strcpy
  • Use & with a local variable to set pointer address to a value on the stack
  • Access a single pointer value using *
  • Demonstrate a diagram of a single pointer in memory
  • Create a pointer that directly points to a location in a c-string
  • Modify pointer address directly using address arithmetic
  • Use a pointer to access elements of an array using address arithmetic and []
  • Search for a string within another string using strstr
  • Extract delimited data from a string using strtok.
  • Challenges

    1
    P2.3 Level 01 Pig Latin
    2
    P2.3 Level 02 Pig Latin
    3
    P2.3 Level 03 Pig Latin
    4
    P2.3 Level 04 Pig Latin