573 views
2 votes
2 votes
Is it possible to have a function call on the left hand side of the equality operator?

a. No, because you can only have variables on the left side
b. Yes, but only in case of functions that do not return anything
c. Yes, but only in case of functions that return a pointer value
d. Yes, but only in case of functions that return a reference value.

1 Answer

Best answer
4 votes
4 votes
#include<stdio.h>

int gA = 5;
int* fun()
{
    return &gA;
}

int main()
{
        *(fun()) = 5;
        printf("%d", gA);
}

So, answer is C? No, because we used a '*' operator and only after it (getting lvalue) we could use "=" operator. But in C++ language we can use

#include<stdio.h>

int gA = 5;
int& fun()
{
    return gA;
}

int main()
{
	fun() = 5; 
	printf("%d", gA);
}

So, answer is D

selected by

Related questions

0 votes
0 votes
1 answer
1
3 votes
3 votes
2 answers
3
0 votes
0 votes
0 answers
4