In c# all arrays have a(n) ________ that equals the number of elements in the array.

Using assignment operators, we can assign value to the variables.

Equality sign (=) is used as an assignment operator in C.

Here, value 5 has assigned to the variable var.


Example

#include<stdio.h>

int main()
{
    int a = 10;
    int b = a;

    printf("a = %d \t b = %d\n",a,b);

    return 0;
}


Here, value of a has assigned to the variable b. Now, both a and b will hold value 10.

Basically, the value of right-side operand will be assigned to the left side operand.

Pictorial Explanation

In c# all arrays have a(n) ________ that equals the number of elements in the array.




Compound assignment operators

Operator

Meaning

Example
(a = 10 , b = 5)

+=

L=L+R
add left and right operand and assign result in left

a+=b;same as a=a+b
after execution a will hold 15

-=

L=L-R
subtract right operand from left operand and assign result in left

a-=b;same as a=a-b
after execution a will hold 5

*=

L=L*R
multiply both right and left operand and store result in left

a*=b;same as a=a*b
after execution a will hold 50

/=

L=L/R
divides left operand by right operand and store result in left

a/=b;same as a=a/b
after execution a will hold 2

%=

L=L%R
After left and right operand division, the remainder will be stored in left

a%=b;same as a=a%b
after execution a will hold 0




Sample Program

Example

#include<stdio.h>

int main()
{
    int a = 10, b = 5;

    a+=b; // same as a=a+b
    printf("value of a+b = %d\n",a); // a will hold the result

    return 0;
}



Topics You Might Like

Hey, folks! In this article, we will be focusing on Arrow operator in C. C language comprises of various operators to deal and manipulate the data records. One such operator is the Arrow operator.

So, let us begin!


Working of Arrow operator in C?

In C, this operator enables the programmer to access the data elements of a Structure or a Union.

This operator(->) is built using a minus(-) operator and a greater than(>) relational operator. Moreover, it helps us access the members of the struct or union that a pointer variable refers to.

Let us now focus on the structure of Arrow operator in C.


Syntax of Arrow operator(->)

Have a look at the below syntax!

(pointer variable)->(variable) = value;

The operator is used along with a pointer variable. That is, it stores the value at the location(variable) to which the pointer/object points.

Let us now implement this operator through some examples in the upcoming section.


Examples of Arrow operator (->)

In the below example, we have created a Structure ‘Movie_info’. Further, we have assigned a pointer object to the structure and allocated memory to it in a dynamic manner using the C malloc() function.

Arrow operator to access the data member of a C Structure

#include <stdio.h>
 
struct Movie_info
{ 
    char *name; 
    char *ACC; 
};
 
int main()
{
     struct Movie_info* M;
     M = (struct Movie_info*) 
        malloc(sizeof(struct Movie_info)); 
     
     M->name = "Python with JournalDev";
     M->ACC="A";
 
     printf("Movie Information:");
     printf("\nName: %s", M->name);
     printf("\nACC: %s", M->ACC);
     return 0;
}

We have accessed the values of the data members using arrow operator(->).

Output:

Movie Information:
Name: Python with JournalDev
ACC: A

Let us now try to access the data members of Union using arrow operator. Arrow operator to access the data members of Union in C

#include <stdio.h>
 
union Movie_info
{ 
    int id;
    float net_val;
};
 
int main()
{
     union Movie_info* M;
     M = (union Movie_info*) 
        malloc(sizeof(union Movie_info)); 
     printf("Movie Information:\n");
     M->id = 01;
     printf("\n ID: %d", M->id);
     M->net_val = 125.45;
     printf("\n NET VALUE: %.1f", M->net_val);
     return 0;
}

Like Structure, we have created a Union ‘Movie_info’ and have accessd the data values using the arrow operator as shown above.

Output:

Movie Information:
ID: 1
NET VALUE: 125.4

Conclusion

By this, we have come to the end of this topic so feel free to comment below, in case you come across any question.


References

  • Arrow operator in C – StackOverFlow

What does << mean in C?

<< is the left shift operator. It is shifting the number 1 to the left 0 bits, which is equivalent to the number 1 .

What is the symbol in C?

Master C and Embedded C Programming- Learn as you go.

What are the 45 operators in C?

C Operators.
Arithmetic Operators..
Relational Operators..
Shift Operators..
Logical Operators..
Bitwise Operators..
Ternary or Conditional Operators..
Assignment Operator..
Misc Operator..

What is && operator in C?

The && (logical AND) operator indicates whether both operands are true. If both operands have nonzero values, the result has the value 1 . Otherwise, the result has the value 0 . The type of the result is int . Both operands must have an arithmetic or pointer type.