You are here

Page not found

Search results

  1. Settextstyle function in c

    ...  EUROPEAN_FONT ,    BOLD_FONT } ; C programming source code for settextstyle #include <graphics.h> #include ...

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

  2. String copy in C

    C program to copy a string using library function strcpy and without using strcpy . String copy C program #include <stdio.h> #include <string.h> int main ( ) {   char source [ 1000 ] , destination [ 1000 ] ;   ...

    Yogesh Suneja - 18/11/2019 - 19:00

  3. Pattern programs in C

    Pattern programs in C language, showing how to create various patterns of numbers and stars. The ... inputs the numbers of rows to print. Pattern program in C #include <stdio.h> int main ( ) {   int ... For more patterns or shapes on numbers and characters see codes on following pages: Floyd triangle Pascal triangle ...

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

  4. 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 )     {     ...

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

  5. C programming

    To quickly learn C language you must start writing programs in it. To do so you need a text editor and a compiler to translate a source program into machine code that can be executed directly on a machine. ... tool to create programs, if you wish to look at some example codes then see C programming examples . How to compile and run your ...

    Yogesh Suneja - 10/12/2019 - 20:37

  6. C program to copy a file

    C program to copy a file: This program copies a file, firstly you will specify ... to copy in "read" mode and target file in "write" mode. C program #include <stdio.h> #include <stdlib.h> int main ( ) {     char ch , source_file [ 20 ] , target_file [ 20 ] ;    FILE ...

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

  7. C programs

    C programs with output showing usage of operators, loops, functions, arrays, ... executable files and execute them without compiling the source file. Code::Blocks IDE is used to write programs; most of these will work with GCC and Dev C++ compilers. The first program, prints "Hello World." ...

    Yogesh Suneja - 23/11/2021 - 20:38

  8. C Game Programming Tutorial

    C game programming tutorial is for all those who wish to make their games or ... mouse button is clicked etc. Here you will find sample source code and programs, you can also download executable files so you can ... action according to the key pressed. Sample source codes and executable files are also available. Know you know how to make a ...

    Yogesh Suneja - 28/07/2019 - 20:54

  9. C substring, substring in C

    C substring program to find substring of a string and its all substrings . A ... = window.adsbygoogle || []).push({}); C substring program #include <stdio.h>   int main ( ) ... 1000 ] ;     int position , length , c = 0 ;       printf ( "Input a string \n " ) ...

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

  10. C graphics tutorial

    This tutorial is for all those who wish to learn C graphics programming, no knowledge of graphics concepts is required. C ... restricted in circle Captcha program These codes show how to use functions of graphics library and simple applications to ...

    Yogesh Suneja - 29/09/2018 - 14:15

Pages