Assignment 5
Assignment 5
1.
#include <stdio.h>
int main() {
int num1, num2;
return 0;
}
2.
#include <stdio.h>
int main() {
int number;
return 0;
}
3.
#include <stdio.h>
int main() {
float cost_price, selling_price, profit_or_loss, profit_percent, loss_percent;
return 0;
}
4.
#include <stdio.h>
int main() {
float angle1, angle2, angle3;
return 0;
}
5.
#include <stdio.h>
int main() {
int m, n;
return 0;
}
6.
#include <stdio.h>
int main() {
int day_number;
return 0;
}
7.
#include <stdio.h>
int main() {
int digit;
return 0;
}
8.
#include <stdio.h>
int main() {
int month_number;
return 0;
}
9.
#include <stdio.h>
int main() {
char character;
return 0;
}
10.
#include <stdio.h>
int main() {
char alphabet;
return 0;
}
11.
#include <stdio.h>
int main() {
char grade;
return 0;
}
12.
#include <stdio.h>
int main() {
float temperature;
// Prompt the user to enter the temperature
printf("Enter the temperature in centigrade: ");
scanf("%f", &temperature);
return 0;
}