ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
Bhai HTML and css teach
@@studyalone609 C ke baad pakka...
#include #include int main(){const char *filepath = "C:\\Users\\Dell\\OneDrive\\Desktop\\chotabheem.txt";FILE *file = fopen(filepath,"r");if(file==NULL){printf("ERROR:chutiye sahi location daal");return 1;} fseek(file,0,SEEK_END);int filesize = ftell(file);rewind(file);char *buffer = (char*)calloc((filesize+1),sizeof(char));if(buffer==NULL){ printf("ERROR:memory alloation failed bc"); fclose(file); return 1;}fread(buffer,sizeof(char),filesize,file);buffer[filesize] = '\0';printf("FILE CONTENT%s",buffer);free(buffer);fclose(file);return 0;}
Bhai HTML and css teach
@@studyalone609 C ke baad pakka...
#include
#include
int main(){
const char *filepath = "C:\\Users\\Dell\\OneDrive\\Desktop\\chotabheem.txt";
FILE *file = fopen(filepath,"r");
if(file==NULL){
printf("ERROR:chutiye sahi location daal");
return 1;
}
fseek(file,0,SEEK_END);
int filesize = ftell(file);
rewind(file);
char *buffer = (char*)calloc((filesize+1),sizeof(char));
if(buffer==NULL){
printf("ERROR:memory alloation failed bc");
fclose(file);
return 1;
}
fread(buffer,sizeof(char),filesize,file);
buffer[filesize] = '\0';
printf("FILE CONTENT
%s",buffer);
free(buffer);
fclose(file);
return 0;
}