You are here

Page not found

Search results

  1. C program remove spaces, blanks from a string

    C program to remove spaces or excess blanks from a string, For example, consider ... programming" There are two spaces in this string, so our program will print the string "C programming." It will remove spaces when ... = window.adsbygoogle || []).push({}); C program #include <stdio.h>   int main ( ) { ...

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

  2. 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 ... as soon as a non digit character is encountered but in our program we will handle ideal case when only valid characters are present in ... to an integer but we will create our own function. C program // C program to convert string to integer without using atoi ...

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

  3. C program to get IP address

    C program to print IP (Internet Protocol) address of your computer, system ... 7. If you are using Turbo C compiler then execute this program from the folder, it may not work when you are working in a compiler and ... = window.adsbygoogle || []).push({}); C program #include<stdlib.h> int main ( ) {   ...

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

  4. C program to find nCr and nPr

    C program to find nCr and nPr, remember, nCr = n!/(r!*(n-r)!) and nPr = n!/(n-r)!. C program to find nPr and nCr using a function #include <stdio.h> ... return result ; } Download NCR and NPR program. Output of program: Another way to calculate nPr and nCr ...

    Yogesh Suneja - 22/11/2019 - 19:42

  5. C program to swap two strings

    C program to swap two strings, i.e., their contents are interchanged. C program #include <stdio.h> #include <string.h> int ... return 0 ; } Download Swap strings program. Output of program: C programming: C ...

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

  6. C program to merge two files

    C program to merge two files and store their contents in another file. The files ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> int ... return 0 ; } Download merge files program. Output of program: C programming: C ...

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

  7. C program to restrict mouse pointer

    This program restricts mouse pointer in a rectangle. When this program is executed the mouse pointer is restricted in a rectangle i.e. you can't move mouse pointer out of the rectangle. /* Program to restrict mouse-pointer */ C program #include<dos.h> ...

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

  8. Arithmetic operations in C

    C program to perform basic arithmetic operations of addition, subtraction, ... = float. So we convert denominator to float in our program, you may also write float in the numerator. This explicit conversion is ... = window.adsbygoogle || []).push({}); C program for arithmetic operations #include <stdio.h> int ...

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

  9. C program to change case of a string

    ... You can also implement functions using pointers. C program to change the case from upper to lower and lower to upper The following program changes the case of alphabets. If a lower/upper case alphabet is ...

    Yogesh Suneja - 01/12/2019 - 08:56

  10. C program to list files of a directory

    C program to list all files, present in a directory/folder, in which its ... it will list all the files present in C:\\TC\\BIN. C program (Turbo C compiler only) #include <stdio.h> #include ... You will get a different output when you execute the program on your computer. C programming: C programs ...

    Yogesh Suneja - 24/11/2019 - 13:47

Pages