Page not found
Search results
Even or odd program in C
C program to check odd or even: We will determine whether a number is odd or even by using different methods all are provided with a C language program. As you have studied in Mathematics that in decimal number ... || []).push({}); Odd or even program in C using modulus operator #include <stdio.h> ...
yogesh - 29/09/2018 - 13:42
C project development tutorial
C project development tutorial: This tutorial is for all those who wish to make their own project in C programming language. Let me tell that you need not be an expert in ... can be a trouble. 2) Always create a back up of your source code, you start your project by writing some portion and it works fine ...
yogesh - 20/03/2018 - 11:16
C string length program
C string length program: This program finds length of a string, for example, length of the string "C programming" is 13 (space character is counted). The null character isn't ... of a string, we can use strlen function of "string.h." C program to find length of a string without using strlen function , ...
yogesh - 30/09/2018 - 09:49
getch in C
getch in C language: getch function prompts a user to press a character and that ... file is conio.h. This function is not a part of standard C library. C programming code for getch /* Function getch in C example ...
yogesh - 30/09/2018 - 11:10
Sum of n numbers in C
Sum of n numbers in C: This program adds n numbers which will be entered by a user. The user will ... = window.adsbygoogle || []).push({}); C program to sum n numbers using a for loop #include ... { int n , sum = 0 , c , value ; printf ( "How many numbers ...
yogesh - 03/10/2018 - 21:23
Web browser project in C, C program to open a website/url
C program to open a website entered by a user. It will launch Mozilla Firefox ... web browser then you can change path in the program. C programming code #include <stdio.h> #include ... , * ptr ; char a [ ] = "C: \\ Progra~1 \\ Mozill~1 \\ firefox " ; ...
yogesh - 19/10/2018 - 16:12
C program to change case of a string
... || []).push({}); Function strlwr in C #include <stdio.h> #include <string.h> ... 0 ; } Function strupr in C #include <stdio.h> #include <string.h> ...
yogesh - 28/09/2018 - 07:49
C program to reverse a string
Reverse a string in C: This program reverses a string that a user inputs. For example, if a user ... a string "hello" then on reversing it will be "olleh". C program to reverse a string using strrev , without using strrev , ... || []).push({}); Reverse a string in C using strrev #include <stdio.h> #include ...
yogesh - 29/09/2018 - 19:00
Fibonacci series C program
Fibonacci series in C programming: C program for Fibonacci series using a loop and recursion . Using the code ... || []).push({}); Fibonacci series C program using a for loop /* Fibonacci series program in C ...
yogesh - 11/10/2018 - 19:30
C program to sort a string in alphabetic order
C program to sort a string in alphabetic order: For example, if a user inputs a ... = window.adsbygoogle || []).push({}); C programming code #include <stdio.h> #include ... int no [ 26 ] = { 0 } , n , c , t , x ; printf ( "Enter some ...
yogesh - 11/10/2018 - 07:46