You are here

Page not found

Search results

  1. C program to copy a file

    ... int main ( ) {     char ch , source_file [ 20 ] , target_file [ 20 ] ;    FILE * source , * target ;     printf ( "Enter name of file to ...

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

  2. C program to find minimum value in an array

    ... or minimum value at the smallest index. You can modify the code to print the largest index at which the minimum occurs. You can also store ...   return index ; } C programming code using pointers #include <stdio.h> int main ( ) ...

    Yogesh Suneja - 11/10/2020 - 11:36

  3. Remove vowels from a string in C

    ... Output of program: C programming code using pointers #include<stdio.h> #include<stdlib.h> ...

    Yogesh Suneja - 11/10/2020 - 23:29

  4. C++ new operator example

    C++ new operator example: C++ code using "new" operator to allocate memory on heap dynamically. C++ programming code #include <iostream>   using namespace std ; ...

    Yogesh Suneja - 11/12/2019 - 11:11

  5. rectangle function in c

    ... specifies the Y-coordinate of right bottom corner. The code given below draws a rectangle. C programming code for rectangle #include<graphics.h> #include<conio.h> ...

    Yogesh Suneja - 05/07/2018 - 14:10

  6. C program to print date

    ... print date, we will use getdate function. C programming code (Works in Turbo C only) #include <stdio.h> #include ... ) ;     return 0 ; } This code works in Turbo C only because it supports dos.h header file. C ...

    Yogesh Suneja - 13/03/2018 - 12:40

  7. Line function in c

    ... i.e. (x1,y1) and (x2,y2) are end points of the line.The code given below draws a line. Declaration: void line(int x1, int y1, int x2, int y2); C programming code for line #include <graphics.h> #include <conio.h> ...

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

  8. getch in C

    ... is not a part of standard C library. C programming code for getch #include <stdio.h> #include <conio.h> int ...

    Yogesh Suneja - 14/12/2019 - 21:35

  9. C program remove spaces, blanks from a string

    ... program. Output of program: C programming code using pointers #include <stdio.h> #include <string.h> ...

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

  10. getpixel and putpixel functions in C

    ... at a point(x, y) of the specified color. C programming code for getpixel and putpixel #include<graphics.h> ...

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

Pages