BEGINNERS AND LAB ASSIGNMENTS - C Codes
Description This a simple code show how to make Hello World application in C with and without using pointers. Source Code /* Simple Version......... */ #include int main() { printf( ...

Description ASCII code...in keyboard Source Code #include<stdio.h> #include<conio.h> void main() { char ch; clrscr(); printf("Enter Any CHARACTER="); scanf("%c",&ch); p ...

Description parity Source Code PARITY GENERATOR :- #include<stdio.h> int main() { int i,count=0,a[10]; printf("enter the seven bit no. 0and1 "); ...

Description To find factorial of a number Source Code #include<stdio.h> int factorial(int x); main() { int n,i; printf("enter the number "); scanf("%d",&n); i=factorial(n); p ...

Description This code will print the pyramid upto the range given by you. Source Code #include<stdio.h> #include<conio.h> void main() { int i,j,k,s,n; printf("ENTER THE NO OF ROWS\t& ...

Description Program to print a Double Pyramid. Source Code #include<stdio.h> #include<conio.h> void main(void) { int i,j,k,l,b,n; clrscr(); printf("Enter the value of N: ...

Description This is a program to calculate LCM and GCD of given numbers. Source Code #include<stdio.h> void main() { int a[20],n,i,j,c,max,min; unsigned long prod; clrscr(); printf(& ...

Description This code finds out whether a given year is Leap year or not Source Code #include <stdio.h> #include <conio.h> void main() { int year,leap; clrscr(); printf("enter the y ...

Description structure:- how to define and manage the group of item. use and implementation of the structure.. in c language.. Source Code # include<stdio.h> /* Structure declaration for address ...









