FIFA-2022 Career Guide Free Tutorials Go to Your University Placement Preparation 
0 like 0 dislike
479 views
in Tutorial & Interview questions by Goeduhub's Expert (9.3k points)

1 Answer

0 like 0 dislike
by Goeduhub's Expert (9.3k points)
 
Best answer

C Program to find whether an integer is positive or negative

#include
int main()
{
//Fill the code
int num;
scanf(“%d”,&num);
if(num > 0)
printf(“Positive”);
else
printf(“Negative”);
return 0;

Program to Swap Two Numbers Without Using Third Variable

#include<stdio.h>
int main()
{
    int a, b;
    printf("Enter two numbers: ");
    scanf("%d %d", &a, &b);  //consider two numbers as 10 and 20
    a = a + b;  //a = 10 + 20 = 30
    b = a - b;  //b = 30 - 20 = 10
    a = a - b;  //a = 30 - 10 = 20
    printf("Numbers after swapping: %d %d", a, b);

C Program to find HCF and LCM of two numbers

Find the highest common factor and the least common multiple of two integers. HCF is also known as the greatest common divisor (GCD) or the greatest common factor (GCF).

#include <stdio.h>

 int main() {

  int a, b, x, y, t, gcd, lcm;

   printf("Enter two integers\n");

  scanf("%d%d", &x, &y);

   a = x;

  b = y;

   while (b != 0) {

    t = b;

    b = a % b;

    a = t;

  }

   gcd = a;

  lcm = (x*y)/gcd;

   printf("Greatest common divisor of %d and %d = %d\n", x, y, gcd);

  printf("Least common multiple of %d and %d = %d\n", x, y, lcm);

   return 0;

}

 C Program to count number of digits in an integer 

#include <stdio.h>
int main()
{
int n;
int count = 0;
printf(“\nEnter the number: “);
scanf(“%d”, &n);
while(n != 0)
{
n = n/10;
++count;
}
printf(“\nNumber of digits: %d\n”, count);

C Program to find the sum of digits of a number

# include<stdio.h>

int sum_of_digits(int n)
{
int sum = 0;
while (n != 0)
{
sum = sum + n % 10;
n = n/10;
}
return sum;
}

int main()
{
int n;
printf(“\nEnter a number : “);
scanf(“%d”,&n);
printf(“\nSum of digits of %d is %d\n”, n,sum_of_digits(n));
return 0;

Note- 

  • Take Input the number from user, Declare a variable called sum and initialize it to 0.
  • while (number > 0)
  • Get the rightmost digit of the number using ‘%’ operator by dividing it with 10 and add it to sum
  • Divide the number by 10.
  • Return sum

C Program to find the sum of natural numbers

 #include <stdio.h>

int main()

{
int n;
printf(“\nEnter the number : “);
scanf(“%d”, &n);

int sum = 0;
for(int i = 1; i <= n; i++)
{
sum += i;
}
printf(“\nSum of %d Natural Numbers is %d\n “,n,sum);
return 0;
}

Learn & Improve In-Demand Data Skills Online in this Summer With  These High Quality Courses[Recommended by GOEDUHUB]:-

Best Data Science Online Courses[Lists] on:-

Claim your 10 Days FREE Trial for Pluralsight.

Best Data Science Courses on Datacamp
Best Data Science Courses on Coursera
Best Data Science Courses on Udemy
Best Data Science Courses on Pluralsight
Best Data Science Courses & Microdegrees on Udacity
Best Artificial Intelligence[AI] Courses on Coursera
Best Machine Learning[ML] Courses on Coursera
Best Python Programming Courses on Coursera
Best Artificial Intelligence[AI] Courses on Udemy
Best Python Programming Courses on Udemy

Related questions

0 like 0 dislike
1 answer 1.5k views
0 like 0 dislike
1 answer 592 views
0 like 0 dislike
1 answer 458 views
0 like 0 dislike
0 answers 271 views

 Important Lists:

Important Lists, Exams & Cutoffs Exams after Graduation PSUs

 Goeduhub:

About Us | Contact Us || Terms & Conditions | Privacy Policy ||  Youtube Channel || Telegram Channel © goeduhub.com Social::   |  | 

 

Free Online Directory

...