mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-04 17:26:32 +08:00
11 lines
135 B
C
11 lines
135 B
C
#include <stdio.h>
|
|
|
|
int main(){
|
|
int i;
|
|
char *s = "a\045+45\'b";
|
|
for(i=0;s++;i++);
|
|
printf("%d\n",i);
|
|
}
|
|
|
|
// 无限循环
|