You are here

Page not found

Search results

  1. C program to convert string to integer without using atoi function

    C program to convert string to integer: It is frequently required to convert a ... to an integer but we will create our own function. C program // C program to convert string to integer without using atoi function ...

    devyog - 23/11/2019 - 11:40

  2. Data structures in C

    Data structures in C are an inevitable part of programs. Computer programs frequently process ... operations on different data structures by implementing C programs. (adsbygoogle = window.adsbygoogle || []).push({}); C data structures programs Array programs Maximum element in ...

    devyog - 12/12/2019 - 19:05

  3. Circle function in c

    ... and third parameter specifies the radius of the circle. The code given below draws a circle. C program for circle #include<graphics.h> #include<conio.h> ...

    devyog - 08/01/2018 - 20:55

  4. pow function in C

    ... Declaration: double pow(double, double); Function pow in C language #include <stdio.h> #include <math.h> int main ( ) {   double c , d , result ;   printf ( "Enter c and d to calculate ...

    devyog - 27/11/2019 - 18:54

  5. setlinestyle in C

    ...  DASHED_LINE ,    USERBIT_LINE } ; C program #include <graphics.h> int main ( ) {   int gd = DETECT , gm , c , x = 100 , y = 50 ;   initgraph ( & gd ...

    devyog - 23/11/2019 - 11:40

  6. Exception handling in Java

    ... At compile time, syntax and semantics checking is done, and code doesn't get executed on a machine, so exceptions get caught at run time. ... {     String languages [ ] = { "C" , "C++" , "Java" , "Perl" , "Python" } ;       ...

    devyog - 04/12/2019 - 21:33

  7. Draw shapes using C graphics

    This C graphics program draws basic shapes such as circle, line, rectangle, ellipse and display text on screen using C graphics. This can be a first graphics program for a beginner. C program #include<graphics.h> #include<conio.h> main ( ...

    devyog - 23/11/2019 - 11:40

  8. sprintf in c

    Sprintf in C : It's just like printf but output is sent to a string, rather than standard ... to string. Previous content of string are overwritten. C program #include<stdio.h> int main ( ) {   ... 1 ;   float b = 1.23 ;   char c = 'u' , string [ 100 ] = "My initial character ...

    devyog - 23/11/2019 - 11:40

  9. colors in C graphics

    Following colors are available for use in C graphics programming. Colors table Color Value ... name as it will improve readability of program. C programming: graphics.h ...

    devyog - 09/06/2018 - 20:50

  10. Captcha program in C

    C program to generate a captcha which is a random string generated using an ... to check whether a human is operating a website. C captcha program #include <stdlib.h> #include <dos.h> ... ] ;   initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;   x = getmaxx ( ) / 2 ; ...

    devyog - 23/11/2019 - 12:15

Pages