07-26-2023, 07:26 AM
Example:
int age = 25;
/*
if (age >= 18) {
printf("You are an adult!\n");
// Handle adult-related actions here
} else {
printf("You are a minor.\n");
// Handle minor-related actions here
}
*/
Explanation:
Multi-line comments can be used to temporarily disable a block of code within the code.
In this example, the block of code inside the if and else blocks is commented out, so it won't be executed.
This can be useful for debugging or testing different code paths without deleting the code.
int age = 25;
/*
if (age >= 18) {
printf("You are an adult!\n");
// Handle adult-related actions here
} else {
printf("You are a minor.\n");
// Handle minor-related actions here
}
*/
Explanation:
Multi-line comments can be used to temporarily disable a block of code within the code.
In this example, the block of code inside the if and else blocks is commented out, so it won't be executed.
This can be useful for debugging or testing different code paths without deleting the code.