Skip to content
Thursday, June 19, 2025
Latest:
  • How to resolve -bash: netstat: command not found centos stream 9
  • python script to STT output in a text file
  • New Install Asterisk 18 from source on CentOS Stream 8
  • How to save audio stream from Asterisk to a file via WebSocket
  • create web socket and save data in a text file

Eduguru

Tech Blog and Discussion

  • Blog
  • Discussion
  • Asterisk Support
  • Contact Us
  • Quiz
    • C Program
    • C – Input/Output
    • PHP Program
    • Basic SQL

c program

C Tutorial Tutorial 

Quicksort program in C

February 3, 2020 Krishna Basic C Example, basic c program, Basic C Programming Example, c program, c programming, quick sort, Quicksort program in C

  #include<stdio.h> void quicksort(int number[25],int first,int last){ int i, j, pivot, temp; if(first<last){ pivot=first; i=first; j=last; while(i<j){ while(number[i]<=number[pivot]&&i<last) i++; while(number[j]>number[pivot])

Read more
C Tutorial Tutorial 

C Program for bubble sorting

February 3, 2020 Krishna basic c program example, Basic C Programming, bubble sort, c program, C Program for bubble sorting, c programming

#include<stdio.h> int main(){ int count, temp, i, j, number[30]; printf(“How many numbers are u going to enter?: “); scanf(“%d”,&count); printf(“Enter

Read more
C Tutorial Tutorial 

Insertion Sort Program in C

February 3, 2020 Krishna basic c program, Basic C Program Examples, c program, C Program Examples, c programming, Insertion Sort, Insertion sort in C, Insertion Sort Program in C

#include<stdio.h> int main(){ int i, j, count, temp, number[25]; printf(“How many numbers u are going to enter?: “); scanf(“%d”,&count); printf(“Enter

Read more
C Tutorial Tutorial 

Selection Sort Program in C

February 1, 2020 Krishna Basic C Examples, basic c program example, c program, C Program Examples, C programming examples, Selection Sort Program in C

#include<stdio.h> int main(){ int i, j, count, temp, number[25]; printf(“How many numbers u are going to enter?: “); scanf(“%d”,&count); printf(“Enter

Read more
C Tutorial Tutorial 

C Program to check whether the given integer is positive or negative

February 1, 2020 Krishna basic c program example, c program, c program example, C Program to check whether the given integer is positive or negative, c programming, check whether the given integer is positive or negative

#include <stdio.h> void main() { int num; printf(“Enter a number: \n”); scanf(“%d”, &num); if (num > 0) printf(“%d is a

Read more
C Tutorial Tutorial 

C Program to Find Quotient and Remainder

February 1, 2020 Krishna Basic C Example, c program, c program example, C Program to Find Quotient and Remainder, c programming, C programming examples, Find Quotient and Remainder

  #include <stdio.h> int main(){ int num1, num2, quot, rem; printf(“Enter dividend: “); scanf(“%d”, &num1); printf(“Enter divisor: “); scanf(“%d”, &num2);

Read more
C Tutorial Tutorial 

C Program to find the Sum of First n Natural numbers

February 1, 2020 Krishna basic c program, c program, C Program to find the Sum of First n Natural numbers, c programming example, Sum of First n Natural numbers

#include <stdio.h> int main() { int n, count, sum = 0; printf(“Enter the value of n(positive integer): “); scanf(“%d”,&n); for(count=1;

Read more
C Tutorial Tutorial 

C Program to check if a number is palindrome or not

February 1, 2020 Krishna basic c program, basic c program example, c program, C Program to check if a number is palindrome or not, c programming, check if a number is palindrome or not

  #include <stdio.h> int main() { int num, reverse_num=0, remainder,temp; printf(“Enter an integer: “); scanf(“%d”, &num); temp=num; while(temp!=0) { remainder=temp%10;

Read more
C Tutorial Tutorial Uncategorized 

C Program to check whether a Character is an Alphabet or not

February 1, 2020February 1, 2020 Krishna basic c program, c program, C Program to check whether a Character is an Alphabet or not, c programming, check whether a Character is an Alphabet or Not

  #include <stdio.h> int main() { char ch; printf(“Enter any character: “); scanf(“%c”,&ch); if( (ch>=’a’ && ch<=’z’) || (ch>=’A’ &&

Read more
C Tutorial Tutorial 

C Program to check if number is even or odd

February 1, 2020 Krishna basic c program, c program, C Program to check if number is even or odd, c programming, Even number, Even or Odd number check

#include<stdio.h> int main() { // This variable is to store the input number int num; printf(“Enter an integer: “); scanf(“%d”,&num);

Read more
  • ← Previous
  • Next →

Recent Article

  • How to resolve -bash: netstat: command not found centos stream 9
  • python script to STT output in a text file
  • New Install Asterisk 18 from source on CentOS Stream 8
  • How to save audio stream from Asterisk to a file via WebSocket
  • create web socket and save data in a text file
  • How to capture and analyze traffic with tcpdump
  • Installing Asterisk 20 From source On Rocky 9
  • html drop down with search from table php mysql
  • How to Install and Use FFmpeg on CentOS 8
  • How to get duration of MP3 or wav any audio File in PHP
  • How to Change location Of MariaDB Data Directory
  • How to check partition details of MySQL table
  • internal server error when download large file php
  • iostat : How to monitor disk activity and CPU load average
  • Webrtc with Asterisk 16 : complete configuration with SIP

Tags

1st Semester Question Paper asterisk basics of java C# coronavirus c program c program example c programming c tutorial c tutorials cyber security download bca question paper Download bca Question Paper december 2017 download ignou bca question dec 2017 download previous year question paper Download Question Paper december 2017 Download Question Paper June 2017 ETHICAL HACKING HACKERS HACKING html ignou IT- Security Java java basics java program java programming java tutorials learn c let us C Linux MySQL NEW TECHNOLOGY Question Paper Download RESEARCH AND INNOVATION security Software software testing technology testing ubuntu UNIX web-app web-site Write a C Program
Copyright © 2025 Eduguru. All rights reserved.
Theme: ColorMag by ThemeGrill. Powered by WordPress.