const char* emailAddress = “daniel”; const char* phoneNumber = “508-4221”;
printf(“Email: %[email protected]\n”, emailAddress); printf(“Phone: (408) %s\n”, phoneNumber);
LinkedIn