Answer: Social Cognition
Explanation: hope this helps
B = x is equal to 5
and
C = “ have special meaning and should not be used when naming variables “.
Answer:
void main(){
string name;
printf("Enter Name\n");
stdin("%s",&name);
Printf("\nGreetings %s",name);
}
Explanation:
Here scanf is represented by stdin and we are using that scanner object to read the string value from user.The value which we read are printed in a new line using printf .The format specifier %s in printf is replaced by name variable
Answer:
Parameter
Explanation:
A parameter is a variable/argument of a function that are placed between the parentheses in the function's definition.
Hope this is clear :)