c語言中puts的用法
c語言中puts的用法的用法你知道嗎?下面小編就跟你們詳細介紹下c語言中puts的用法的用法,希望對你們有用。
c語言中puts的用法的用法如下:
puts就是輸出字符串啊。
int puts(
const char* string
);
MSDN的例子
/* PUTS.C: This program uses puts
* to write a string to stdout.
*/
#include <stdio.h>
void main( void )
{
puts( "Hello world from puts!" );
}
運行結果就是
Hello world from puts!
你要輸出換行的話,就用 puts( "\n" );
用法很簡單啊,就是把一個C樣式的字符串當參數(shù)傳過去。
//-----------------------------------------
我剛剛試過了
puts( "" )的確可以起到換行的作用。
The puts function writes string to the standard output stream stdout, replacing the string's terminating null character ('
c語言中puts的用法
c語言中puts的用法的用法你知道嗎?下面小編就跟你們詳細介紹下c語言中puts的用法的用法,希望對你們有用。
c語言中puts的用法的用法如下:
puts就是輸出字符串啊。
int puts(
const char* string
);
MSDN的例子
/* PUTS.C: This program uses puts
* to write a string to stdout.
*/
#include <stdio.h>
void main( void )
{
puts( "Hello world from puts!" );
}
運行結果就是
Hello world from puts!
你要輸出換行的話,就用 puts( "\n" );
用法很簡單啊,就是把一個C樣式的字符串當參數(shù)傳過去。
//-----------------------------------------
我剛剛試過了
puts( "" )的確可以起到換行的作用。
The puts function writes string to the standard output stream stdout, replacing the string's terminating null character ('\0') with a newline character ('\n') in the output stream.
當puts遇到\0時,會輸出一個\n,也就是換行。
所以puts( "" )時,因為字符串本身長度為0,所以第一個字符就是\0,puts會輸出一個\n,所以起到了換行的效果。
也就是說, puts( "" )跟puts( "\0" )是等效的,也等效於printf( "\n" )
printf是通過系統(tǒng)的設備輸出字符的,一般顯示器是缺省輸出設備
puts只能輸出到顯示器
使用設備可以使用重定向
比如你用printf顯示的字符可以用重定向符輸出到文件
myapp > mytext.txt
而用puts不可以
要高效的話cputs更高效而且功能更強大
當puts遇到
c語言中puts的用法
c語言中puts的用法的用法你知道嗎?下面小編就跟你們詳細介紹下c語言中puts的用法的用法,希望對你們有用。
c語言中puts的用法的用法如下:
puts就是輸出字符串啊。
int puts(
const char* string
);
MSDN的例子
/* PUTS.C: This program uses puts
* to write a string to stdout.
*/
#include <stdio.h>
void main( void )
{
puts( "Hello world from puts!" );
}
運行結果就是
Hello world from puts!
你要輸出換行的話,就用 puts( "\n" );
用法很簡單啊,就是把一個C樣式的字符串當參數(shù)傳過去。
//-----------------------------------------
我剛剛試過了
puts( "" )的確可以起到換行的作用。
The puts function writes string to the standard output stream stdout, replacing the string's terminating null character ('\0') with a newline character ('\n') in the output stream.
當puts遇到\0時,會輸出一個\n,也就是換行。
所以puts( "" )時,因為字符串本身長度為0,所以第一個字符就是\0,puts會輸出一個\n,所以起到了換行的效果。
也就是說, puts( "" )跟puts( "\0" )是等效的,也等效於printf( "\n" )
printf是通過系統(tǒng)的設備輸出字符的,一般顯示器是缺省輸出設備
puts只能輸出到顯示器
使用設備可以使用重定向
比如你用printf顯示的字符可以用重定向符輸出到文件
myapp > mytext.txt
而用puts不可以
要高效的話cputs更高效而且功能更強大
所以puts( "" )時,因為字符串本身長度為0,所以第一個字符就是
c語言中puts的用法
c語言中puts的用法的用法你知道嗎?下面小編就跟你們詳細介紹下c語言中puts的用法的用法,希望對你們有用。
c語言中puts的用法的用法如下:
puts就是輸出字符串啊。
int puts(
const char* string
);
MSDN的例子
/* PUTS.C: This program uses puts
* to write a string to stdout.
*/
#include <stdio.h>
void main( void )
{
puts( "Hello world from puts!" );
}
運行結果就是
Hello world from puts!
你要輸出換行的話,就用 puts( "\n" );
用法很簡單啊,就是把一個C樣式的字符串當參數(shù)傳過去。
//-----------------------------------------
我剛剛試過了
puts( "" )的確可以起到換行的作用。
The puts function writes string to the standard output stream stdout, replacing the string's terminating null character ('\0') with a newline character ('\n') in the output stream.
當puts遇到\0時,會輸出一個\n,也就是換行。
所以puts( "" )時,因為字符串本身長度為0,所以第一個字符就是\0,puts會輸出一個\n,所以起到了換行的效果。
也就是說, puts( "" )跟puts( "\0" )是等效的,也等效於printf( "\n" )
printf是通過系統(tǒng)的設備輸出字符的,一般顯示器是缺省輸出設備
puts只能輸出到顯示器
使用設備可以使用重定向
比如你用printf顯示的字符可以用重定向符輸出到文件
myapp > mytext.txt
而用puts不可以
要高效的話cputs更高效而且功能更強大
也就是說, puts( "" )跟puts( "
c語言中puts的用法
c語言中puts的用法的用法你知道嗎?下面小編就跟你們詳細介紹下c語言中puts的用法的用法,希望對你們有用。
c語言中puts的用法的用法如下:
puts就是輸出字符串啊。
int puts(
const char* string
);
MSDN的例子
/* PUTS.C: This program uses puts
* to write a string to stdout.
*/
#include <stdio.h>
void main( void )
{
puts( "Hello world from puts!" );
}
運行結果就是
Hello world from puts!
你要輸出換行的話,就用 puts( "\n" );
用法很簡單啊,就是把一個C樣式的字符串當參數(shù)傳過去。
//-----------------------------------------
我剛剛試過了
puts( "" )的確可以起到換行的作用。
The puts function writes string to the standard output stream stdout, replacing the string's terminating null character ('\0') with a newline character ('\n') in the output stream.
當puts遇到\0時,會輸出一個\n,也就是換行。
所以puts( "" )時,因為字符串本身長度為0,所以第一個字符就是\0,puts會輸出一個\n,所以起到了換行的效果。
也就是說, puts( "" )跟puts( "\0" )是等效的,也等效於printf( "\n" )
printf是通過系統(tǒng)的設備輸出字符的,一般顯示器是缺省輸出設備
puts只能輸出到顯示器
使用設備可以使用重定向
比如你用printf顯示的字符可以用重定向符輸出到文件
myapp > mytext.txt
而用puts不可以
要高效的話cputs更高效而且功能更強大
printf是通過系統(tǒng)的設備輸出字符的,一般顯示器是缺省輸出設備
puts只能輸出到顯示器
使用設備可以使用重定向
比如你用printf顯示的字符可以用重定向符輸出到文件
myapp > mytext.txt
而用puts不可以
要高效的話cputs更高效而且功能更強大