Wrong..............................................
Answer:
Glue Language
Explanation:
I'm not 100% sure, but here is the definition.
Glue language- A programming language that can be used to provide interoperability between systems not originally intended to work together
Answer:
When two or more computers are connected together so they can communicate with one another, they form a network. The largest computer network in the world in the Internet.
Answer:
I think it's not a social problem but they are doing that by their own choice . but if the girls are forced to do that is the social problem
Answer:
C++ code explained below
Explanation:
SOURCE CODE:
*Please follow the comments to better understand the code.
#include <stdio.h>
int numOfBytes(char* string)
{
// initialise the variables
int i=0,size=0;
// while the string reaches to \0, repeat the loop.
while(string[i]!='\0')
{
// add that size
size += sizeof(*string);
// increase the i value.
i++;
}
// add 1 byte for \0
size = size+1;
return size;
}
int main() {
char name[]="Praveen Kumar Reddy";
printf("The size is %d bytes.",numOfBytes(name));
return 0;
}
=============