首頁 > 後端開發 > C++ > 主體

寫一個C程序,印出' Tutorials Point ”,不使用分號

WBOY
發布: 2023-09-11 18:05:02
轉載
1375 人瀏覽過

写一个C程序,打印“ Tutorials Point ”,不使用分号

在不使用分號的情況下列印任何字串,我們需要了解標準輸出的工作原理以及為什麼使用分號。

分號是行結束語句,用來告訴程式該行在此結束。這裡使用的標準列印語句printf是標準io函式庫的一種方法。讓我們深入了解printf()方法。

int printf(const char *format , ...)
登入後複製

This method returns an integer and has a set of arguments format and … . The format is a string that is printed in the output screen. And the … is the additional number of arguments to func givenments based on the string.

The funnctions return the total number of character that is to be printed on the screen.

Using this we can find ways to bypass the stateuse of end of line #Using this we can find ways to bypass the stateuse of end of line #Using this we can find ways to bypass the statement while of line #Using printing the statement. We can use some statements that do not require the end of LINE statement to execute like the for loop. We can use this to print are set a statement without using the semicolon.

od methodrere s#There several method by which we can print statement without using the semicolon;

#Using the if condition

#include<stdio.h>
int main() {
   if (printf("Tutorials point") )
   { }
}
登入後複製

Using the switch statement

#include<stdio.h>
int main() {
   switch (printf("Tutorials point") )
   { }
}
登入後複製

Using the while loop

#include<stdio.h>
int main() {
   while (printf("Tutorials point") )
   { }
}
登入後複製

###############################################################夫使用巨集###
#include<stdio.h>
#define Out printf("Tutorials point")
int main() {
   switch (out)
   { }
}
登入後複製
###

以上是寫一個C程序,印出' Tutorials Point ”,不使用分號的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板