Classwork 5 : First Word
Example
Skeleton Code
#include <stdio.h>
// #include <string.h> // uncomment this line if needed
int main() {
char input[] = "Welcome to HKUST Robotics Team Software Tutorial";
printf("Before trimming: %s\n", input);
// your code starts here
// your code ends here
printf("After trimming: %s\n", input);
return 0;
}Last updated