Single Level Function

  • c_cpp
  • 閲覧1283
2
/*Consider the following single-level function:*/
	#include<stdio.h>
	main()
	{
 /*print a messa...

///*** 無料ユーザー登録後、正常なすべてのコードが表示されます ***///

					
2018-9-28

Single Level Function

コードの説明
In the preceding function:
main(): Is the first function to be executed.
(): Are used for passing parameters to a function.
{}: Are used to mark the beginning and end of a function. These are mandatory in all functions.
/* */: Is used for documenting various parts of a function.
Semicolon (;): Is used for marking the end of an executable line.
printf(): Is a C function for printing (displaying) constant or variable data.