Which of the following format identifier can never be used for the variable var?
#include <stdio.h>
int main()
{
char *var = "The quick brown fox jumps over the lazy dog";
}
#include <stdio.h>
int main()
{
char *var = "The quick brown fox jumps over the lazy dog";
}
A. %f
B. %d
C. %c
D. %s
Answer: Option A
Join The Discussion