जॉइन Examsbookउत्तर :
What would be the output of the following program?
main()
{
char a[] = "Visual C++";
char *b = "Visual C++";
printf ("\n%d %d", sizeof (a), sizeof (b));
printf ("\n%d %d", sizeof (*a), sizeof (*b));
}5
प्र: What would be the output of the following program? main() { char a[] = "Visual C++"; char *b = "Visual C++"; printf ("\n%d %d", sizeof (a), sizeof (b)); printf ("\n%d %d", sizeof (*a), sizeof (*b)); }
- उत्तर देखेंउत्तर छिपाएं
- Workspace
उत्तर :
व्याख्या :
11 2 1 1

