Computer Science, asked by riyakri730, 1 month ago

what do you mean by implicit and explicit variable declaration? ​

Answers

Answered by DeepakUgalePatil
1

Answer:

int explicit=100;

int implicit(100);

Explanation:

brilliant please

You can assign values to your variables upon declaration. When we assign values to a variable using the assignment operator (equals sign), it’s called an explicit assignment:

int value = 5; // explicit assignment

You can also assign values to variables using an implicit assignment:

int value(5); // implicit assignment

Even though implicit assignments look a lot like function calls, the compiler keeps track of which names are variables and which are functions so that they can be resolved properly.

Answered by basavarajabasavaraja
1

Answer:

The function in which are in the form of y = f(x) which are called explicit functions

If the function in the form of f(x,y) = 0 and it is not convinient to express in y = f(x) is called implicit functions

Hope it's help u dude ☺✌

Similar questions