What is the size in bytes of these? str[]="hey"; str2[]={'h','e','y'} and str3[]="h";?I don't have a C++ editor running currently. That's why I asked :P
What is the size in bytes of these? str[]="hey"; str2[]={'h','e','y'} and str3[]="h";?What is the size in bytes of these? str[]="hey"; str2[]={'h','e','y'} and str3[]="h"...
char Name[6]; How much characters can a user input? Would there be a null-terminator at 5th index?So, this thing is a C-string, right? char Name[]="james"; and it is equivalent to writing char Nam...
char Name[6]; How much characters can a user input? Would there be a null-terminator at 5th index?char Name[6]; How much characters can a user input? Would there be a null-terminator at 5th in...
Constructors.ClassName(int l=3, int b=5, int h=8) { length=l; breadth=b; int height=h; } is this a constr...