Happy valentine’s u too !!
Answer: C. Prototyping
Explanation:
The Prototyping phase of App development involves making a prototype of the app in question and then releasing it to a few potential users so that they can experience the concept of the app and its workability.
The potential user is then interviewed to find out their thoughts on the direction that the app is taking to find out if it is the right one. The prototype will obviously be rudimentary but it is a great opportunity to find out how potential users view the app's concept.
It’s 0
it’s like 3 times 0
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;
}
=============