Codes
1. Multiples of 3 or 7
// Inside process_file, replace the if condition:
if (val != 0 && (val % 3 == 0 || val % 7 == 0)) {
printf("%d\n", val);
}2. Multiples of 30 (5 AND 6)
// Inside process_file:
if (val != 0 && (val % 5 == 0 && val % 6 == 0)) {
printf("%d\n", val);
}3. Custom Separators
// Inside process_file:
char *separators = " -\r\t\n./,@#$";4. Match Counter
5. Standard Input Support
6. Range Filter (10-100)
7. Hexadecimal Output
8. Exclude Number 6
9. Sum Summary
10. Filename Header
Last updated