Which of the following format identifier can never be used for the variable var?
int main()
{
char *var = "Advanced Training in C by AllIndiaExams.com";
}
Answer: A
?an be used to print the indexed position. ?an still be used to display its ASCII value. %s is recommended.
?annot be used.