KonITA7

Saturday, June 18, 2016

C Program Code: Draw A Right Angled Triangle

11:04 PM
C Program Code: #include<stdio.h>#include<conio.h>int main(){    int size;    int i,j,space;    printf("Draw A Right Angled Triangle in C \n");    printf("Enter...

C Program Code: Print Reverse Triangle

10:58 PM
C Program Code: #include<stdio.h>#include<conio.h>int main(){    int size,space;    int i,j;    printf("Print Reverse Triangle in C \n");    printf("Enter...

C Program Code: Equilateral Triangle

10:52 PM
C Program Code: #include<stdio.h>#include<conio.h>int main(){    int size;    int i,j;    printf("Equilateral Triangle in C \n");    printf("Enter Size...

C Program Code: Print Multiplication Table

10:48 PM
C Program Code: #include<stdio.h> #include<conio.h> int main() {     int number;     int i;     printf(" Print Multiplication Table in C \n");     printf("...

C Program Code: Print Pascal Triangle

10:43 PM
C Program Code: #include <stdio.h> #include <conio.h> int main() {     int size,space;     int i,j;     printf("Print Pascal Triangle in C \n");     printf("Enter...

C Program Code: Find LCM of Two Numbers

10:37 PM
C Program Code: #include<stdio.h> int main() {     int firstNumber;     int secondNumber;     int lcm;     int i,n;     printf("Find...

C Program Code: Convert Hexadecimal to Decimal

10:30 PM
C Program Code: #include<stdio.h> #include<stdlib.h> #include<math.h> unsigned long convertToDecimal(char hex[]); int main() {     char hex[9];// 8 characters for 32-bit Hexadecimal...

C Program Code:Find Square Root of a Number

10:24 PM
C Program Code: #include<stdio.h> #include<math.h> int main() {     int number;     double squareRoot;     printf(" Find Square Root of a Number...

C Program Code:Find Number is Even or Odd

10:20 PM
C Program Code: #include<stdio.h>int main(){    int number;    printf(" Find Number is Even or Odd in C \n");    printf(" Enter a Number : ");    scanf("%d",...

C Program Code:Find Largest of Three Numbers

10:16 PM
C Program Code: #include<stdio.h> int main() {     int firstNumber, secondNumber, thirdNumber, largest;     printf("Find Largest of Three Numbers in C \n");     printf("Enter...

C Program Code: Convert Decimal to Hexadecimal

10:10 PM
C Program Code: #include<stdio.h> void decimalToHex(int number , int base); int main() {     int decimalNumber;     int base;     base = 16; //...

C Program Code: Convert Binary to Decimal

10:04 PM
C Program Code: #include<stdio.h> #include<stdlib.h> #include<math.h> int convertToDecimal(const char binary[]); int main() {     char binaryNumber[17]; // 16 characters for...