CPP01 1.0
読み取り中…
検索中…
一致する文字列を見つけられません
main.cpp ファイル

Main program to demonstrate zombie horde creation and announcement. [詳解]

#include "Zombie.hpp"
#include <cstdlib>
#include <iostream>
main.cpp の依存先関係図:

[ソースコード]

関数

void leak_check (void)
 Checks for memory leaks (OS-dependent).
 
int main (void)
 Main function of the program.
 

詳解

Main program to demonstrate zombie horde creation and announcement.

main.cpp に定義があります。

関数詳解

◆ leak_check()

void leak_check ( void  )

Checks for memory leaks (OS-dependent).

main.cpp25 行目に定義があります。

◆ main()

int main ( void  )

Main function of the program.

Creates a horde of zombies, makes them announce themselves, and performs a basic memory leak check.

戻り値
0 if the program executes successfully, 1 otherwise.

main.cpp44 行目に定義があります。