Dashboard Temp Share Shortlinks Frames API

sunny_jain - HTMLify profile

sunny_jain's Profile Picture

sunny_jain

4 Files

1690 Views

files of /sunny_jain/

CHECK PANGRAM BY C /sunny_jain/CHECK_PANGRAM_BY_.C
400 Views
0 Comments
//WRITE a program to check if string is pangram?
// input-"the quick brown fox jumps over the lazy dog"
//output- is a pangra
HEXADECIMAL TO DECIMAL BY SWITCH CASE /sunny_jain/HEXADECIMAL_TO_DECIMAL_BY_SWITCH_CASE.C
482 Views
0 Comments
//hexadecimal to decimal by using switch case
#include<math.h>
#include<stdio.h>
#include<string.h>
int main() {
char
PRINT HALLOW DIAMOND PATTERN BY FOR LOOP IN C /sunny_jain/PRINT_HALLOW_DIAMOND_PATTERN_BY_FORLOOP.C
417 Views
2 Comments
// using for loop
#include <stdio.h>

int main()
{
int n = 5, rows, columns;
for (rows = 1; rows<= n; rows++) {

PRINT HALLOW DIAMOND PATTERN USING WHILE LOOP /sunny_jain/PRINT_HALLOW_DIAMOND_PATTERN_BY_WHILELOOP.C
391 Views
0 Comments
// using while loop to make a hollow diamond pattern
#include <stdio.h>
int main()
{
int n = 5, rows = 1, columns;