logoISU  

CS256 - Principles of Structured Design

Fall 2021

Displaying ./code/sternflCode/str1.c

#include<stdio.h>
#include<string.h>
//using the function strlen to find the number of characters in a string
int main() {
  printf("Please enter a string ");
  char str[100];
  scanf("%s", str);
  printf("%s\n", str);
  printf("%d\n", strlen(str) );
  return 0;
}