#include <stdio.h>
int main() {
printf("x1\n");
return 0;
}
I want to add the 1 character to bottom of x like in HTML. Is it possible in C?
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
x<sub>1</sub>
</body>
</html>