You are here

Page not found

Search results

  1. C program to print diamond pattern

    The diamond pattern in C language: This code prints a diamond pattern of stars. The diamond shape is as follows: ... || []).push({}); Diamond pattern program in C #include <stdio.h> int main ( ) {   int ...

    Yogesh Suneja - 26/11/2019 - 22:50

  2. Java program to compare two strings

    ... they are equal or not? The compareTo method of String class is used to test the equality of its two objects. The method is ... || []).push({}); Output of program: Download Compare strings program class file. String "hello" is greater than "Hello" because the ...

    Yogesh Suneja - 05/12/2019 - 08:42

  3. Scope resolution operator in C++

    Scope resolution operator (::) in C++ is used to define a function outside a class or when we want to use a ... but also has a local variable with the same name. C++ programming code #include <iostream> using namespace std ;   ...

    Yogesh Suneja - 31/10/2019 - 20:55

  4. outtextxy function in c

    ... argument contains the address of string to be displayed. C programming code for outtextxy #include<graphics.h> #include<conio.h> ...

    Yogesh Suneja - 08/01/2018 - 20:55

  5. C program to delete a file

    C program to delete a file whose name (with extension) a user will input. The ... the file, then it will be displayed by perror function. C file deletion program #include <stdio.h> int main ( ) ...

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

  6. C program to find HCF and LCM

    C program to find HCF and LCM: The code below finds the highest common factor and the least common multiple of two ... || []).push({}); HCF of two numbers in C #include <stdio.h> int main ( ) {   int a ...

    Yogesh Suneja - 10/12/2019 - 20:50

  7. kbhit in C

    Function kbhit in C is used to determine if a key has been pressed or not. To use it in a program ... otherwise it returns zero. Declaration: int kbhit(); C programming code for kbhit #include <stdio.h> #include <conio.h> int ...

    Yogesh Suneja - 22/11/2019 - 20:31

  8. Bubble sort in C

    Bubble sort in C to arrange numbers in ascending order; you can modify it for descending order ... || []).push({}); Bubble sort program in C /* Bubble sort code */ #include <stdio.h> int main ( ) {   ...

    Yogesh Suneja - 14/10/2020 - 21:14

  9. C project development tutorial

    C project development tutorial: This tutorial is for all those who wish to make ... can be a trouble. 2) Always create a back up of your source code, you start your project by writing some portion and it works fine but at a ...

    Yogesh Suneja - 01/12/2019 - 08:56

  10. Sum of n numbers in C

    Sum of n numbers in C: This program adds n numbers that a user inputs. The user enters a number indicating ... = window.adsbygoogle || []).push({}); C program to find sum of n numbers using a for loop #include <stdio.h> ...

    Yogesh Suneja - 10/12/2019 - 23:42

Pages