Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
2
Downvoting Members
3
0 Endorsements
Ranked #44.2K
~9K People Reached
Interests
Programming, puzzles, problem solving.
Favorite Forums
Favorite Tags
c x 3
java x 1

4 Posted Topics

Member Avatar for ColicabSyke

Here is the Code as per your requirement. #include <stdio.h> int main(){ int terms, lastNumber=1,secondLast=0,currentNumber=0,counter; printf("Enter number of terms in Fibonacci series: "); scanf("%d", &terms); /* * Nth term = (N-1)th therm + (N-2)th term; */ for(counter = 0; counter < terms; counter++){ if(counter < 2){ currentNumber = counter; } …

Member Avatar for markanderson4
0
341
Member Avatar for shubhamgore

Algorithm to check whether a number(N) is prime number or not. For every number i, between 2 to N/2(2<= i <= N/2) check whether i divides N completely(check If i is a factor of N). * if (N % i == 0), then N cannot be a Prime number. * …

Member Avatar for markanderson4
-6
873
Member Avatar for lanzslumber

Check this star triangle pattern program: * * * * * * * * * * * * * * * * * * * * * #include<stdio.h> #include<conio.h> int main() { int i,j,rows; printf("Enter the number of rows\n"); scanf("%d", &rows); for(i = 1; i <= rows; i++) { /* …

Member Avatar for markanderson4
0
4K
Member Avatar for Louie_Rave

Here is some Sample Graphics programs in C using Turbo C compiller to start with. [Turbo C Graphics programs](http://www.techcrashcourse.com/2015/08/c-graphics-programming-tutorial.html) You can check this [animation program in C for moving car](http://www.techcrashcourse.com/2015/08/c-graphics-program-moving-car-animation.html).

Member Avatar for markanderson4
1
4K

The End.