-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmegaphore.cpp
More file actions
20 lines (18 loc) · 1.05 KB
/
megaphore.cpp
File metadata and controls
20 lines (18 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* megaphore.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tkatsuma <tkatsuma@student.42tokyo.jp> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/12/05 09:35:37 by tkatsuma #+# #+# */
/* Updated: 2025/12/10 00:16:44 by tkatsuma ### ########.fr */
/* */
/* ************************************************************************** */
#include <iostream>
int main(int argc, char* argv[]) {
for (int idx = 0; idx < argc; ++idx) {
std::cout << "argv[" << idx << "]=" << argv[idx] << "\n";
}
return (0);
}