Showing posts with label If. Show all posts
Showing posts with label If. Show all posts

C Program if - while - for Example

How to write a C Program if - while - for Example in C Programming Language ?


Solution For C Program :

C Program if - else if - else Example

How to write a C Program if - else if - else Example in C Programming language ?

Solution For C Program :

C Program if

How to write a C Program if in C Programming Language ?


Solution For C Program :

C Program to Calculation of Bonus using 'if' statement

How to write a C Program to Calculation of Bonus using 'if' statement in C Programming Language ?


Solution:

This program is nothing but the demonstration of 'if' statement.


The current year and the year in which the employee joined the organization
are entered through the keyboard.

If the number of years for which the employee has served the organization is greater than 3 then a bonus of Rs. 2500/- is given to the employee.

If the years of service are not greater than 3, then the program should not do anything.

If his basic salary is less than Rs. 1500, then HRA=10% of basic salary and DA=90% of basic salary.

If his salary is either equal to or above Rs. 1500, then HRA = Rs. 500 and DA = 98% of basic salary.

If the employee's salary is input through the keyboard write a program to find his gross salary.


  1. #include<stdio.h>
  2. main ()
  3. {
  4.  
  5. int bonus, cy, yoj, yr_of_ser;
  6.  
  7. printf ("Enter current year and year of joining: ");
  8.  
  9. scanf ("%d %d", &cy, &yoj);
  10.  
  11. yr_of_ser = cy - yoj;
  12.  
  13. if (yr_of_ser>3)
  14. {
  15. bonus = 2500;
  16.  
  17. printf ("Bonus = Rs. %d", bonus);
  18. }
  19. }

C Program To Find Prime Number And If Number Is Not Prime Then Find Factors

Write a C program to find prime number and if number is not prime then find factors of the number in C Programming Language ?


Solution:

  1. #include <stdio.h>
  2. #include <conio.h>
  3. void main()
  4. //C Program to Check whether the Given Number is a Prime
  5. //C program to display all the factors of a number entered by user.
  6. {
  7.  int flag=0,i,n,r,a[100],b=0,s;
  8.  clrscr();
  9.  printf("\n Enter Number: ");
  10.  scanf("%d",&n);
  11.  for(i=2;i<=n/2;i++)
  12.  {
  13.   r=n%i;
  14.   if(r==0)
  15.   {
  16.    flag=s;
  17.    a[b]=i;
  18.    b++;
  19.   }
  20.  }
  21.  if(flag==s)
  22.  {
  23.   printf(" So The Number %d is not prime",n);
  24.   printf("\n The factors are: ");
  25.   for(i=0;i<b;i++)
  26.   {
  27.    printf("%d ",a[i]);
  28.   }
  29.  }
  30.  else
  31.  {
  32.   printf("\n So The Number %d is prime",n);
  33.  }
  34.  getch();
  35. }