You are here

Page not found

Search results

  1. Data structures in C

    ... unique advantages. We can choose which one to use in our program according to our requirements once we are familiar with different of ... element in array Minimum element in array Reverse array Insert element in array Delete element from array ...

    Yogesh Suneja - 12/12/2019 - 19:05

  2. C program to find the frequency of characters in a string

    C program to find the frequency of characters in a string: This program counts the frequency of characters in a string, i.e., which character ... and special characters) are ignored. You can modify this program to handle uppercase and special symbols. ...

    Yogesh Suneja - 23/11/2019 - 11:40

  3. ceil in C - math.h

    Ceil function is used to round up a number i.e. it returns the smallest number which is greater than argument passed to it. Declaration: double ceil(double); C program #include <stdio.h> #include <math.h> int main ... ;   return 0 ; } Output of program: ...

    Yogesh Suneja - 23/11/2019 - 11:40

  4. C program to check subsequence

    C program to check Subsequence; don't confuse it with substring. In our program, we check if a string is a subsequence of another. A user will ... we test if one of them is a subsequence of the other. The program prints yes if either the first string is a subsequence of the second ...

    Yogesh Suneja - 25/10/2020 - 14:07

  5. Binary search in C

    ... is present in the list, then we print its location. The program assumes that the input numbers are in ascending order. ... array [ 100 ] ;   printf ( "Enter number of elements \n " ) ;   scanf ( "%d" , & n ...

    Yogesh Suneja - 14/10/2020 - 19:11

  6. Leap year program in C

    Leap year program in C to check if a year is a leap year or not, a leap year is one that ... divisible by 400. Read more about a Leap year . The program is based on the Gregorian Calendar. ... || []).push({}); Leap year C program   #include <stdio.h> int main ( ) {   ...

    Yogesh Suneja - 02/10/2020 - 00:25

  7. Fibonacci series in C

    ... || []).push({}); Fibonacci series program in C #include <stdio.h> int main ( ) { ... 1 , next , c ;   printf ( "Enter the number of terms \n " ) ;   scanf ( "%d" , & n ) ...

    Yogesh Suneja - 25/10/2020 - 23:45

  8. C++ program to add two complex numbers

    C++ program to add two complex numbers. C++ programming code #include ... << "Enter a and b where a + ib is the first complex number." ;     cout << " \n a = " ;     cin ... << "Enter c and d where c + id is the second complex number." ;     cout << " \n c = " ;     cin ...

    Yogesh Suneja - 13/07/2018 - 12:29

  9. C program to convert string to integer without using atoi function

    C program to convert string to integer: It is frequently required to convert a ... as soon as a non digit character is encountered but in our program we will handle ideal case when only valid characters are present in ... to an integer but we will create our own function. C program // C program to convert string to integer without using atoi ...

    Yogesh Suneja - 23/11/2019 - 11:40

  10. C program to get IP address

    C program to print IP (Internet Protocol) address of your computer, system ... 7. If you are using Turbo C compiler then execute this program from the folder, it may not work when you are working in a compiler and ... = window.adsbygoogle || []).push({}); C program #include<stdlib.h> int main ( ) {   ...

    Yogesh Suneja - 23/11/2019 - 11:40

Pages