VR Indian Wanderers Youtube Facebook RSS Feed
Learn with Vikas Suhag
Program to show usage of Assignment Operator in C Language
Nov 27, 2021   Vikas Suhag

Assigment operators in C Language

#include <stdio.h>

main() {

   int a = 21;
   int c ;

   c =  a;
   printf("Line 1 - =  Operator Example, Value of c = %d\n", c ); // 21

   c +=  a; //42
   printf("Line 2 - += Operator Example, Value of c = %d\n", c );

   c -=  a; // 0
   printf("Line 3 - -= Operator Example, Value of c = %d\n", c );

   c *=  a; // 441, 0
   printf("Line 4 - *= Operator Example, Value of c = %d\n", c );

   c /=  a; // 1,0
   printf("Line 5 - /= Operator Example, Value of c = %d\n", c );

   c  = 200;
   c %=  a; // 9,11
   printf("Line 6 - %= Operator Example, Value of c = %d\n", c );

   c <<=  2; //
   printf("Line 7 - <<= Operator Example, Value of c = %d\n", c );

   c >>=  2;
   printf("Line 8 - >>= Operator Example, Value of c = %d\n", c );

   c &=  2;
   printf("Line 9 - &= Operator Example, Value of c = %d\n", c );

   c ^=  2;
   printf("Line 10 - ^= Operator Example, Value of c = %d\n", c );

   c |=  2;
   printf("Line 11 - |= Operator Example, Value of c = %d\n", c );
}

 


Leave a Comment

* Email will not be published.
All comments are only visible after approval.
Most Viewed articles
Travel Blog - VR Indian Wanderers
VR Indian Wanderers
Govt. Jobs Portal
Govt. Jobs Portal
Free Chart Maker
Make free animated Charts from .CSV
Search
Youtube Channel
Podcast
Subscribe to Email Updates
Connect With Us
VR Indian Wanderers Youtube Facebook RSS Feed
© 2024 Learn with Vikas Suhag. All Rights Reserved.