DOCUMENT RESOURCES FOR EVERYONE
Documents tagged
Documents Test Your C-Skills[Yashwant Kanitkar]

Chapter 1 Arrays 1] What would the output of the following program? main() { char a[] = "Visual C++"; char *b = "Visual C++"; printf("\n %d %d",sizeof(a),sizeof(b));…