#include<stdio.h>
#include<conio.h>
#include<string.h>
int main() {
int i, number, num1, num2=0;
char str1[50];
num1 = number;
for(i=2; i<=20; i+=2) {
printf("%d", i);
printf(", ");
}
return 0;
}
सेवाहरूमा नैतिकता, मनोविजञान, फिजियोलोजी, मानवविजञान अनतरगत सामाजिक अधययनको पराथमिक उददेशय युवाहरूलाई जानकारी र कारण पुरयाउन मददत गरनु हो I सामाजिक अधययन विजञानको शाखा हो जुन समाज र वयकतिहरू बीचको समबनधको अधययनमा समरपित छ I सामाजिक अधययन पहिले समाजको मौलिक विजञान र समाजशासतरको कषेतरलाई सनदरभ गरन परयोग गरिएको थियो I समाजशासतर बाहेक अब सामाजिक अधययनले
समेटने विषयहरुको एक विसतृत शृंखला देखन पाइनछ I ती मधये केही अरथशासतर वयवसथापन चिनह, मानव भूगोल,मिडिया अधययन, राजनीतिक विजञान, मनोविज...
A negative of a vector represents the direction opposite to the reference direction. It means that the magnitude of two vectors are same but they are opposite in direction.
For example, if A and B are two vectors that have equal magnitude but opposite in direction, then vector A is negative of vector B.
Program to input any number and display number of odd numbers in it;
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
int main() {
int i, number, num1, num2=0, num3, num4 =0, rem, rem1, rem2, rev = 0;
printf("Enter your number ==> ");
scanf("%d", &number);
num1 = number;
while(num1 != 0) {
rem = num1%10;
rem1 = rem%2;
if (rem1 != 0) {
num2 = num2*10 + rem;
}
num1 /= 10;
}
num3 = num2;
while (num2 != 0) {
...