You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
char b = 'B';
char temp;
temp = a;
a = b;
b = temp;
printf("value of a=%c \nvalue of b=%c \nvalue of temp=%c",a,b,temp);
return 0;//原文中temp与tmp混乱,且缺少头文件,缺少尾部花括号
}
The text was updated successfully, but these errors were encountered:
#include<stdio.h>
int main() {
char a = 'A';
}
The text was updated successfully, but these errors were encountered: