STRUCTURE IN C A structure is a user-defined data type available in C that allows to combining data items of different kinds. Structures are used to...
March 2018
Structure Arrays are used to store large set of data and manipulate them, but the disadvantage is that all the elements stored in an array...
C Programming | Fibonacci SeriesThe phrase, “the Fibonacci sequence” usually refers to a set of numbers that starts as {0, 1, 1, 2, 3, 5, 8, 13,...
Introduction To PointerA Pointer in C language is a variable which holds the address of another variable of same data type.Pointers are used to access...
C program to transpose the matrix #include <stdio.h<int main(){ int a[10][10], i, j, row, col, trans[10][10]; printf("Enter...
#include<stdio.h>#include<string.h>int main() { char str[100], rev; int i=0,c,j; printf("Enter the...
A for loop is a repetition control structure that allows you to efficiently write a loop that needs to execute a specific number of times.SyntaxThe...
#include <stdio.h>int main(){ int i, j; char input, alphabet = 'A'; printf("Enter the uppercase character...
#include<stdio.h>int main(){ int i,n; char a[100][25]; printf("Enter the number:- "); scanf("%d",&n); printf("Enter the names in array\n");...
A for loop is a repetition control structure that allows you to efficiently write a loop that needs to execute a specific number of times.SyntaxSyntaxThe...
#include <stdio.h>#include <string.h>int main(){ int i, j = 0, k = 0, count = 0; char str[100], key[20]; ...
C Program To Find Prime Number From Inputted Numbers#include<stdio.h>int main(){ int n,i,j,c=0,a[100]; printf("How many numbers to be...
C Program To Show Square Of Numbers And Find Their Sum#include<stdio.h>int main(){ int i=1,n,sq,sum=0; printf("Enter number:\n"); scanf("%d",&n);...
File Handling in C Programming | C Programming Language C supports a number of functions that have the ability to perform basic file operations,...
Basic Concept Of FunctionA function is a block of code that performs a specific task. Every C program has at least one function, which is main(),...
Subscribe to:
Posts (Atom)