Increment and Decrement Operators in C | Video Tutorial in HINDI
Source code for this Tutorial
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x = 10;
int y;
y = --x;
printf("x = %d\n",x);
printf("y = %d\n",y);
return 0;
}
Free Computer Programming Tutorials in Hindi
Source code for this Tutorial
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x = 10;
int y;
y = --x;
printf("x = %d\n",x);
printf("y = %d\n",y);
return 0;
}
Copyright © LearningLad.in. All rights reserved.