This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Output file name | |
output_file="output.txt" | |
# Remove the output file if it already exists | |
rm -f "$output_file" | |
# Array of directories and files to exclude | |
exclude_patterns=( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
int main() | |
{ | |
printf("CalculatorS"); | |
int a,b; | |
printf("Enter first number: "); | |
scanf("%d",&a); |