Chkconst.c
Upload User: dq031136
Upload Date: 2022-08-08
Package Size: 802k
Code Size: 0k
Development Platform:

C++ Builder

  1. #include <stdio.h>
  2. void no_change(const char *string)
  3.  { 
  4.    while (*string)
  5.      *string++ = toupper(*string);
  6.  }
  7.  void main(void) 
  8.   {
  9.     char title[] = "Jamsa's C/C++ Programmer's Bible";
  10.     no_change(title);
  11.     printf(title);
  12.   }