cstdlib
#include <cstdlib>
int main() {
// Generate a random number between 0 and 99
int randomNumber = rand() % 100;
return 0;
}#include <cstdlib>
int main() {
// Convert the string "123" to an integer
int number = atoi("123");
return 0;
}#include <cstdlib>
int main() {
// Convert the integer 123 to a string
char buffer[100];
sprintf(buffer, "%d", 123);
return 0;
}