Page not found
Search results
Textwidth function in c
... in pixels. Declaration: int textwidth(char *string); C programming source code for textwidth #include <stdio.h> #include ...
devyog - 08/01/2018 - 20:55
textheight function in c
... pixels. Declaration: int textheight(char *string); C programming source code for textheight #include<graphics.h> ...
Guest (not verified) - 08/01/2018 - 20:55
Arc function in C
... angle and end angle should be 0 and 360 respectively. C programming source code for arc #include <graphics.h> #include <conio.h> ...
devyog - 03/10/2018 - 18:04
setfillstyle function in c
... CLOSE_DOT_FILL , USER_FILL } ; C programming source code for setfillstyle #include<graphics.h> ...
devyog - 08/01/2018 - 20:55
gety function in c
... of current position. Declaration: int gety(); C programming source code for gety #include <graphics.h> #include <conio.h> ...
devyog - 08/01/2018 - 20:55
setviewport function in c
... note that the point (left, top) becomes the new origin. C programming source code for setviewport #include<graphics.h> ...
devyog - 08/01/2018 - 20:55
Java program to find the largest of three numbers
... || []).push({}); Java programming source code import java.util.Scanner ; class Largest { ...
devyog - 05/12/2019 - 00:04
Linear search in C
... let's see how it works in computers. Linear search in C to find whether a number is present in an array. If it's present, then at ... Linear search C program for multiple occurrences In the code below, we will print all locations at which the required element is found ...
devyog - 05/04/2025 - 22:18
Settextstyle function in c
... EUROPEAN_FONT , BOLD_FONT } ; C programming source code for settextstyle #include <graphics.h> #include ...
devyog - 08/01/2018 - 20:55
Palindrome in C
C program to check if a string or a number is palindrome or not . A ... then the string is a palindrome otherwise not. C program to check palindrome without using string functions . Some ... copy_string ( char * target , char * source ) { while ( * source ) { ...
devyog - 14/10/2020 - 19:48