logoISU  

CS256 - Principles of Structured Design

Fall 2021

Displaying ./code/sternflCode/st2.c

#include<stdio.h>
#include<string.h>

/*
  strcmp(
*/

int main() {

  printf( "%d\n", strcmp("dog", "dag"));
  printf("%d\n", 'o'-'a');
  printf( "%d\n", strcmp("dag", "dog"));
  printf("%s %d\n", "dog", strlen("dog"));



  return 0;
}