answersLogoWhite

0


Best Answer

The symbol and (ampersand, &) in C and C++ programming is the bitwise inclusive or operator. If there are two ampersands (&&) it is a relational inclusive or operator. As a unary operator, it means to take the address of something. In C++, it can also be overridden in a class method to mean nearly anything else.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the function of symboland in C programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is d command for squareroot in C programming?

There are no commands in C-programming, you should use function sqrt from math.h


What is a sizeof function in C programming?

Sizeof is an example.


Is combination a library function in c language of programming?

No.


What is the function of square root in C programming?

it is sqrt in header math.h


What is fncn in C programming?

1. identifier 2. short for function


What is the approach of C programming known as?

Sequential style, or function-oriented. Which is opposed to object-oriented, as in C++.


What is library function in C programming?

printf, fgets, strlen, malloc etc


How do you print 0001 in C programming?

its quite simple using printf function


What an example of a function?

In C-programming: int main (void) { return 0; }


Why you use void res in c programming?

since, the word 'void' in C programming language means that it does not return any value to the user or calling function....this is usually used to specify a type of function...... for this reason w use 'void'in c program..


Can a parent function access values of a child function?

In C programming, there aren't any parent or child functions.


How does the compiler differentiate the statement and function in C programming?

statement should not return a value but function returns a value