I coding a simple code in vim
#include<stdio.h>
int main(){
int n;
scanf("%d", &n);
printf("%d\n", n);
return 0;
}
and copy the same phase to the web.
and I copy again the same phase to dev c++ editor from the web.
Look! error stray '\240'!!
please look below I copy the same phase to here(stackoverflow.com)
#include<stdio.h>
int main() {
????int n;
????scanf("%d", &n);
????printf("%d\n", n);
????return 0;
}
I figure out character '?' is add up. I can not see character '?' in dev c++ editor. However, It is very difficultly to delete because I cannot see '?' in dev c++ edtor.
I have to copy phase some code to web. and somebody have to copy phase the same code to dev c++. I guess the someone will compile and will error stray '\240'.
I like to use vim. can some know how not to add '?'('?' is '\240') up using vim?