Skip to content

Commit afb5cbf

Browse files
author
mikeblome
committed
fixed break and other issues
1 parent bfd3cbd commit afb5cbf

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

docs/cpp/main-function-and-command-line-args.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: "Startup and Termination (C++)"
2+
title: "main function and command-line arguments (C++)"
3+
description: "The main function is the entry point for a C++ program."
34
ms.date: "12/10/2019"
45
ms.assetid: c6568ee6-40ab-4ae8-aa44-c99e232f64ac
56
---
@@ -98,7 +99,7 @@ int main( int argc, char *argv[], char *envp[] ) {
9899
}
99100
```
100101

101-
# Parsing C++ Command-Line Arguments
102+
## Parsing C++ command-Line arguments
102103

103104
**Microsoft Specific**
104105

@@ -144,7 +145,7 @@ int main( int argc, // Number of strings in array argv
144145
145146
The following table shows example input and expected output, demonstrating the rules in the preceding list.
146147
147-
### Results of Parsing Command Lines
148+
### Results of parsing command lines
148149
149150
|Command-Line Input|argv[1]|argv[2]|argv[3]|
150151
|-------------------------|---------------|---------------|---------------|
@@ -155,7 +156,7 @@ The following table shows example input and expected output, demonstrating the r
155156
156157
**END Microsoft Specific**
157158
158-
## Wildcard Expansion
159+
## Wildcard expansion
159160
160161
**Microsoft Specific**
161162
@@ -165,7 +166,7 @@ Command-line arguments are handled by a routine called `_setargv` (or `_wsetargv
165166
166167
**END Microsoft Specific**
167168
168-
## Customizing C++ Command-Line Processing
169+
## Customizing C++ command-line processing
169170
170171
**Microsoft Specific**
171172

0 commit comments

Comments
 (0)