#include <stdio.h>
int main()
{
int a[5][5];
int c=1, i, j, k, n;
for(i=0;i<3;i++)
{
if(a[2][2]==25)
...
Patterns using Loop
After learning the basics of the C Programming, let's play with the language and code some patterns. To able to code the patterns, you...
Find length of string without built-in function
#include <stdio.h>
int main()
{
char s[1000];
int i=0;
printf("Enter a string: ");
scanf("%s", s);
while(s[i] !=...
Concat two strings without built-in function
#include <stdio.h>
int main()
{
char s1[100], s2[100], i, j;
printf("Enter first string: ");
scanf("%s", s1);
printf("Enter...
Copy string without built-in function
#include <stdio.h>
int main()
{
char s1[100], s2[100], i;
printf("Enter string s1: ");
scanf("%s",s1);
for(i = 0; s1[i]...
Program : Factorial Using Recursion
#include <stdio.h>
long int fact(int n);
int main()
{
int n;
printf("Enter a Positive Integer: ");
scanf("%d", &n);
...
Recursion
Recursion is very useful concept. Recursion, in very simple words, function calling itself. Sometimes, we need to repeat the function many...
Call by Value and Call by Reference
Call by value and Call by reference is the extended part of Functions. Let's see what's it? For this, you need to understand the concept...
Structures and Union
Unlike the array, which stores the data in the variables of the same data type, Structures and Union are used for data storage in variables...
Pointers
So, now let's begin with the Advanced Part of C Programming. The first concept, we are going to learn about is pointers. So what are pointers?...
Functions
Functions are basically the block of codes which we have to use multiple times in the program like loops. Functions can reduce the number...
Subscribe to:
Posts (Atom)