You are here

Page not found

Search results

  1. putpixel function in c

    ... (35, 45) then we will write putpixel(35, 35, GREEN); in our c program, putpixel function can be used to draw circles, lines and ellipses using various algorithms. C programming code for putpixel #include<graphics.h> #include<conio.h> ...

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

  2. Java program to print date and time

    Java date and time program: Java code to print or display current system date and time. We are ... {     public static void main ( String args [ ] )     {       int day, month, year ...

    Yogesh Suneja - 05/12/2019 - 18:35

  3. Arithmetic operations in C

    C program to perform basic arithmetic operations of addition, subtraction, ... of two numbers/integers that user inputs. Division in C In C language, when we divide two integers, we get an integer result, ...

    Yogesh Suneja - 11/10/2020 - 01:08

  4. textbackground in C

    ... . Declaration: void textbackground(int color); C programming code for textbackground #include<stdio.h> #include<conio.h> ...

    Yogesh Suneja - 03/02/2018 - 16:06

  5. getche in C

    ... character and that character is printed on the screen. C code for getche #include<stdio.h> #include<conio.h> main ...

    Yogesh Suneja - 24/12/2017 - 18:14

  6. Binary search in C

    Binary search in C language to find an element in a sorted array. If the array isn't sorted, ... is present in the list, then we print its location. The program assumes that the input numbers are in ascending order. ... || []).push({}); Binary search program in C #include <stdio.h> int main ( ) {   int ...

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

  7. Anagram program in C

    Anagram program in C to check whether two strings are anagrams or not. They are assumed ... and "CAB" are anagrams, as every character, 'A,' 'B,' and 'C' occur the same number of times (one time here) in both the strings. A ...

    Yogesh Suneja - 09/10/2020 - 23:32

  8. Function moverel in C

    ... distance. Declaration: void moverel(int x, int y); C programming code for moverel #include <graphics.h> #include <conio.h> ...

    Yogesh Suneja - 24/01/2018 - 17:57

  9. sector function in c

    ... y, int stangle, int endangle, int xradius, int yradius); C programming code for sector #include <graphics.h> #include <conio.h> ...

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

  10. setcolor function in c

    ... to RED. Remember that default drawing color is WHITE. C programming code for setcolor #include<graphics.h> #include<conio.h> ...

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

Pages