Fibonacci series program in c

fibonacci

Here is a simple program that prints out the first n numbers in the Fibonacci series in C:#include <stdio.h>int main() {  int n, i;  long long int t1... read more ?

Introduction to C language

Introduction to C     C is a general purpose programming language. Programming language is the means to communicate with the system to get our thing done.Need for a programming language: ... read more ?

Factorial program in python

Untitled

#write a python program for factorial of a given number.num = int(input("Enter a number: "))factorial = 1if num < 0:   print("factorial not exist for negative numbers")elif num ==... read more ?

find substring python

Untitled

 find substring():The find substring is used to find the substring from the string.Substring is the piece of characters from the string.If the string consists of the given string... read more ?

python replaceall

Untitled

In python, replace all is similar to replace() function. Here we are going to replace all the characters with new characters.It also consists of 3 parameters like new value,... read more ?

format function in python

Untitled

 The format() function is used to format a specific value and insert that value in string placeholders. The placeholders are cost{20}, number index{1},empty{}The place holder is defined by" curly... read more ?

Select Menu