Program to display the Fibonacci sequence up to n-th term where n is provided by the user count = int(input(“enter
Continue readingPython Program to Find ASCII Value of Character
Program to find the ASCII value of character # Change this value for a different character result c = ‘K’
Continue readingC Program to Calculate Standard Deviation
Standard Deviation Program in C #include<stdio.h> #include <math.h> float standard_deviation(float data[]); int main() { int i; float arr[10]; printf(“Enter the
Continue readingPython Program to Solve Quadratic Equation
Quadratic Equation Program:- The Standard Form of a Quadratic Equation looks like this Quadratic Equation: ax**2 + bx + c = 0
Continue readingC Programming dangling pointer
Dangling Pointer in C The pointer variable which is pointing to a inactive or dead location is called dangling pointer.
Continue readingMerge Sort Program in C
Program of a merge sort is below. Divide the first list into the smallest unit, then compare each element with
Continue readingBUBBLE SORT
C Program – BUBBLE SORT Program Implementation. #include<stdio.h> int main() { int count,temp,i,j,arr[20]; printf(“How many numbers of elements do you
Continue readingQuicksort Program in c
C Program – Quicksort Program implementation #include<stdio.h> void quick_sort(int arr_num[25],int first,int last){ int temp,i, j, pivot; if(first<last){ pivot=first; i=first;
Continue readingSQL Server Myths :- Truncate command Can’t Be Rolled Back and TRUNCATE Is Non-logged?
There is no such thing as a no-logged operation in a user databases.A TRUNCATE TABLE operation delete of all data
Continue readingWhat Is Memory leak in C And How to avoid it?
This happens when the programmers allocate memory to the heap for some temporary use and then forget to delete it
Continue reading