You are here

Page not found

Search results

  1. Area of a circle in C

    ... C program to find the area of a circle: C programming code to calculate the area of a circle. In the program, we use 3.14159 as the ...

    Yogesh Suneja - 04/11/2020 - 13:21

  2. Even odd program in Java

    ... for explanation see: C program to check odd or even . Code: import java.util.Scanner ; class EvenOdd { ...

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

  3. C read file

    ... Read file in C using fopen C programming code to open a file and print its contents on screen. #include ...

    Yogesh Suneja - 25/10/2020 - 21:59

  4. C program to print a string

    ... functions such as printf, puts. Consider the following code: printf ( "Hi there! How are you doing?" ) ; ...

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

  5. Bubble sort in C

    ... Bubble sort program in C /* Bubble sort code */ #include <stdio.h> int main ( ) {   ...

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

  6. Decimal to binary in C

    ... Download Decimal binary program. This code only prints binary of an integer. Still, we may wish to perform operations ...

    Yogesh Suneja - 10/10/2020 - 15:27

  7. C substring, substring in C

    ... we do not need to return the substring array. See another code below in which we return a pointer to substring, which we create in our ...

    Yogesh Suneja - 02/10/2020 - 16:44

  8. Pattern programs in C

    ... ** *** **** ***** to print above pattern see the code below: Star pattern in C #include <stdio.h> int ...

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

  9. Linear search in C

    ... Linear search C program for multiple occurrences In the code below we will print all locations at which required element is found and ... Linear search multiple occurrence program. Output of code: C program for linear search using a function #include ...

    Yogesh Suneja - 13/12/2019 - 21:04

  10. Using multiple classes in a Java program

    ... file somewhere in other projects without recompiling the code. In a nutshell number of .class files created are equal to the number of ... many classes in a single file isn't recommended, as it makes code difficult to read. Instead, you can create a separate file for every ...

    Yogesh Suneja - 04/12/2019 - 20:24

Pages