“c Arquivo aberto” Respostas de código

Leia os arquivos em C

#include<stdio.h>
int main(){
	FILE *in=fopen("name_of_file.txt","r");
	char c;
	while((c=fgetc(in))!=EOF)
		putchar(c);
	fclose(in);
	return 0;
}
JJSE

como abrir um arquivo com aberto em c

int main (void)
{
	int fd = open("path_name.c", O_RDONLY);  // the file is now open, you just need to read it
	return (0);
}
Better Bug

Respostas semelhantes a “c Arquivo aberto”

Perguntas semelhantes a “c Arquivo aberto”

Procure respostas de código populares por idioma

Procurar outros idiomas de código