ciso646
int main() {
// Convert a character to uppercase
char c = 'a';
c = toupper(c); // c is now 'A'
}int main() {
// Calculate the absolute value of a number
int x = -5;
x = abs(x); // x is now 5
}int main() {
// Concatenate two strings
char s1[] = "Hello";
char s2[] = "World";
strcat(s1, s2); // s1 is now "HelloWorld"
}