Skip to content (Press Enter)
SURYAOFFICIAL

SURYAOFFICIAL

Learn Anytime Anywhere

  • Home
  • blog
  • Contact Us
  • About us
SURYAOFFICIAL

SURYAOFFICIAL

Learn Anytime Anywhere

  • Home
  • blog
  • Contact Us
  • About us

blog

Cosine Series ( cos(x)=1-x^2/2!+x^4/4!-x^6/6!+……………)

29 Jun,2020 suryad5Leave a comment

//c program to find the value of cosine series #include<stdio.h> #define pi 3.1416 void main() { int n,i; float x, …

Read More

sine series (sin(x)=x – x^3/3! +x^5/5!……..)

29 Jun,2020 suryad5Leave a comment

//c program to find the value of sine series #include<stdio.h> #define pi 3.1416 void main() { int n,i; float x, …

Read More

C Program to find factorial of an integer

29 Jun,2020 suryad5Leave a comment

//calculating factorial of number that is n!=n*(n-1)*(n-2)…..3*2*1 #include<stdio.h> void main() { int fact=1,n; printf(“enter the number”); scanf(“%d”,&n); while(n!=0) { fact=fact*n; …

Read More

C Program to Find the Area of a Circle

29 Jun,2020 suryad5Leave a comment

#include<stdio.h> void main() { float A,r; printf(“enter the radius of the circle “); scanf(“%f”,&r); A=3.14*r*r; printf(“\nthe area of the cirlce …

Read More

C Program to Dispaly 2-D Table

29 Jun,2020 suryad51 Comment

#include<stdio.h> void main() { int n,i,j; printf(“\n enter the number upto which multiplication is to be found\n”); scanf(“%d”,&n); for(j=1;j<=n;j++) { …

Read More

Program to Display 1-D Table

29 Jun,2020 suryad5Leave a comment

#include<stdio.h> void main() { int n,i; printf(“\n enter the number which multiplication is to be found\n”); scanf(“%d”,&n); for(i=1;i<=10;i++) { printf(“\t …

Read More

MY Past

25 Jun,2020 suryad5Leave a comment
Read More

Posts navigation

< Page 1 Page 2 Page 3

Recent Posts

  • write a C program to display the name of day on the basis of entered number 1 to 7. for example, 1 for sunday.
  • write a program to checks whether the number entered by user is exactly divisible by 5 but not by 11.
  • Write a C program to sort integer values in descending order
  • Concept of Pointer(Part-2)
  • C Program to swap two numbers showing call by reference.

Categories

  • C Programming
  • HSEB
  • Pointer
  • Programming Language
  • Uncategorized

Recent Comments

  • Ram Binay sharma on write a C program to display the name of day on the basis of entered number 1 to 7. for example, 1 for sunday.
  • Ram Binay sharma on write a C program to display the name of day on the basis of entered number 1 to 7. for example, 1 for sunday.
  • Manij on C Program to Dispaly 2-D Table

Archives

  • July 2020
  • June 2020

Search

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

©2026 SURYAOFFICIAL.