⑴ iphone手機上有什麼app能打開c語言文件
C語言文件本質上就是文本文件,一般能打開txt的文本閱讀器就能打開。
⑵ 怎麼用C語言編一個打開txt文件的程序
你可以使用fopen函數,例子如下:
FILE
*fp;/*定義文件類型的指針,它講指向你所要打開的文件,以後向文件寫入數據或者是從文件中讀取數據都需要用到他*/
fp=fopen("文件名以及其路徑","打開方式");
建議以參考以下幾個c函數,你就能夠很隨意的完成對文件的處理了:
fopen()
字元讀寫函數:fgetc()和fputc()
字元串讀寫函數:fgets()和fputs()
格式化讀寫函數:fcanf()和fprintf()
數據塊讀寫函數:fread()和fwrite()
這些都是對文件操作的基本函數,其中你最好研究一下fopen()函數,那個相對其他的函數要記憶的東西比較多~~
⑶ 如何用c語言做個閱讀器
只做dos界面的很簡單。
打開文件
然後輸出即可。
可以定義一頁顯示多少個字元
以及定義上翻頁 下翻頁功能
還可以加上跳轉到指定百分比。
⑷ C語言如何讀取txt文本裡面的內容
C語言可以使用fopen()函數讀取txt文本里。
示例:
#include <stdio.h>
FILE *stream, *stream2;
void main( void )
{
int numclosed;
/* Open for read (will fail if file "data" does not exist) */
if( (stream = fopen( "data", "r" )) == NULL )
printf( "The file 'data' was not opened " );
else
printf( "The file 'data' was opened " );
/* Open for write */
if( (stream2 = fopen( "data2", "w+" )) == NULL )
printf( "The file 'data2' was not opened " );
else
printf( "The file 'data2' was opened " );
/* Close stream */
if(fclose( stream2 ))
printf( "The file 'data2' was not closed " );
/* All other files are closed: */
numclosed = _fcloseall( );
printf( "Number of files closed by _fcloseall: %u ", numclosed );
}
(4)c語言txt閱讀器擴展閱讀
使用fgetc函數
#include <stdio.h>
#include <stdlib.h>
void main( void )
{
FILE *stream;
char buffer[81];
int i, ch;
/* Open file to read line from: */
if( (stream = fopen( "fgetc.c", "r" )) == NULL )
exit( 0 );
/* Read in first 80 characters and place them in "buffer": */
ch = fgetc( stream );
for( i=0; (i < 80 ) && ( feof( stream ) == 0 ); i++ )
{
buffer[i] = (char)ch;
ch = fgetc( stream );
}
/* Add null to end string */
buffer[i] = '