#include int main() { int n = 13; double x = 99.99; char c = 'X'; char * s = "Hello"; printf("n=%d x=%8.3lf c=%c s=%s\n", n, c, x, s); }