C言語は、アルファベットの大文字と小文字の区別をします。
#include <stdio.h>
void main(void) {
// 全て別個の変数
int a;
int A;
char str;
char Str;
}
C言語の基礎知識・雑学C言語は、アルファベットの大文字と小文字の区別をします。
#include <stdio.h>
void main(void) {
// 全て別個の変数
int a;
int A;
char str;
char Str;
}