sunny_jain - HTMLify profile

sunny_jain's Profile Picture

sunny_jain

4 Files

433 Views

Latest files of sunny_jain

1. PRINT HALLOW DIAMOND PATTERN USING WHILE LOOP | Owner: sunny_jain | Views: 96 | Comments: 0 | Open/ Source 985 B

// using while loop to make a hollow diamond pattern #include <stdio.h> int main() { int n = 5, rows = 1, columns;

2. PRINT HALLOW DIAMOND PATTERN BY FOR LOOP IN C | Owner: sunny_jain | Views: 137 | Comments: 2 | Open/ Source 869 B

// using for loop #include <stdio.h> int main() { int n = 5, rows, columns; for (rows = 1; rows<= n; rows++) {

3. HEXADECIMAL TO DECIMAL BY SWITCH CASE | Owner: sunny_jain | Views: 98 | Comments: 0 | Open/ Source 909 B

//hexadecimal to decimal by using switch case #include<math.h> #include<stdio.h> #include<string.h> int main() { char

4. CHECK PANGRAM BY C | Owner: sunny_jain | Views: 102 | Comments: 0 | Open/ Source 927 B

//WRITE a program to check if string is pangram? // input-"the quick brown fox jumps over the lazy dog" //output- is a pangra