当前位置: 技术问答>linux和unix
readdir
来源: 互联网 发布时间:2016-04-21
本文导语: #include #include #include int main() { DIR* dir; struct dirent* ent; if(!(dir=opendir("."))){ perror("opendir"); return 1; errno=0; while((ent=readdir(dir))){ puts(ent->d_name); errno=0; } if(errno){ perror("readdir"); return 1; } closedir(dir); return 0; } dircontents.c: In function ...
#includewhat is this error..?how to make it run
#include
#include
int main()
{
DIR* dir;
struct dirent* ent;
if(!(dir=opendir("."))){
perror("opendir");
return 1;
errno=0;
while((ent=readdir(dir))){
puts(ent->d_name);
errno=0;
}
if(errno){
perror("readdir");
return 1;
}
closedir(dir);
return 0;
}
dircontents.c: In function ‘main’:
dircontents.c:22: error: expected declaration or statement at end of input
|
你的代码重排后是这样的,最后少了个 }
可见代码风格多重要啊
#include
#include
#include
int main()
{
DIR *dir;
struct dirent *ent;
if (!(dir = opendir("."))) {
perror("opendir");
return 1;
errno = 0;
while ((ent = readdir(dir))) {
puts(ent->d_name);
errno = 0;
}
if (errno) {
perror("readdir");
return 1;
}
closedir(dir);
return 0;
}
|
vim
:set autoindent
就可以自动缩进了
:set autoindent
就可以自动缩进了
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。