USING FOR LOOP THE CODE TO DISPLAY THE PATTERN OF FORWARD ARROW

7 years ago
                  Hello, In this blog we learn how to print the forward pattern using for loop. In C language the for loop is very useful, for loop include initialization, condition and incrementation. So by using this loop we print the pattern. USING FOR LOOP THE CODE...
USING FOR LOOP THE CODE TO DISPLAY THE PATTERN OF FORWARD ARROW USING FOR LOOP THE CODE TO DISPLAY THE PATTERN OF FORWARD ARROW Reviewed by Amit Waghmare on September 22, 2018 Rating: 5

USING FOR LOOP THE CODE TO DISPLAY THE PATTERN OF DOWNWARD HALF PYRAMID

7 years ago
USING FOR LOOP THE CODE TO DISPLAY THE PATTERN: #include<stdio.h> #include<conio.h> int main() {int i, j, n; printf ("ENTER THE NUMBER TO DISPLAY PATTERN "); scanf ("%d",&n); for(i=1; i<=n; i++) {for(j=i; j<=n; j++) {printf("♥ "); } printf("\n"); } getch(); } OUTPUT: When inputted is 5 ♥ ♥ ♥...
USING FOR LOOP THE CODE TO DISPLAY THE PATTERN OF DOWNWARD HALF PYRAMID USING FOR LOOP THE CODE TO DISPLAY THE PATTERN OF DOWNWARD HALF PYRAMID Reviewed by Amit Waghmare on September 22, 2018 Rating: 5

USING FOR LOOP THE CODE TO DISPLAY THE PATTERN OF HALF PYRAMID

7 years ago
USING FOR LOOP THE CODE TO DISPLAY THE PATTERN: #include<stdio.h> #include<conio.h> int main() {int i, j, n; printf ("ENTER THE NUMBER TO DISPLAY PATTERN "); scanf ("%d",&n); for(i=1; i<=n; i++) {for(j=1; j<=i; j++) {printf("♥ "); } printf("\n"); } getch(); } OUTPUT: When inputted is 5 ♥ ♥...
USING FOR LOOP THE CODE TO DISPLAY THE PATTERN OF HALF PYRAMID USING FOR LOOP THE CODE TO DISPLAY THE PATTERN OF HALF PYRAMID Reviewed by Amit Waghmare on September 22, 2018 Rating: 5

Introduction of loops in c language

7 years ago
                          Friends in c there are different types of loop statements like for loop, while loop, do-while loop, etc. and in this blog, I will explain the for loop, while loop and do-while loop. ●for loop:          ...
Introduction of loops in c language Introduction of loops in c language Reviewed by Amit Waghmare on September 22, 2018 Rating: 5

code to find +,-,×,/ of two numbers

7 years ago
COMBINE CODE TO FIND THE           ADDITION, SUBTRACTION, DIVISION, MULTIPLICATION, AND REMAINDER OF TWO NUMBERS C language code for addition,subtraction,multiplication,division and modulo: #include<studio.h> #include<condo.h> float main () { float a, b,add, sub, mul, div,...
code to find +,-,×,/ of two numbers code to find +,-,×,/ of two numbers Reviewed by Amit Waghmare on September 18, 2018 Rating: 5

C language code for division of two numbers

7 years ago
DIVISION OF TWO NUMBERS SIMPLE C LANGUAGE CODE FOR DIVISION OF TWO NUMBERS: #include<stdio.h> #include<conio.h> int main() {int a, b, c;//we take two integer value printf("Enter the number :");//use to print the letter, character scanf("%d%d",&a,&b);//use to scan the accept number and scan...
C language code for division of two numbers C language code for division of two numbers Reviewed by Amit Waghmare on September 16, 2018 Rating: 5

C language code for multiplication of two numbers

7 years ago
MULTIPLICATION OF TWO NUMBERS SIMPLE C LANGUAGE CODE FOR MULTIPLICATION OF TWO NUMBERS: #include<stdio.h> #include<conio.h> int main() {int a, b, c;//we take two integer value printf("Enter the number :");//use to print the letter, character scanf("%d%d",&a,&b);//use to scan the accept number...
C language code for multiplication of two numbers C language code for multiplication of two numbers Reviewed by Amit Waghmare on September 16, 2018 Rating: 5

C language code for subtraction of two numbers

7 years ago
SUBTRACTION OF TWO NUMBERS SIMPLE C LANGUAGE CODE FOR SUBTRACTION OF TWO NUMBERS: #include<stdio.h> #include<conio.h> int main() {int a, b, c;//we take two integer value printf("Enter the number :");//use to print the letter, character scanf("%d%d",&a,&b);//use to scan the accept number...
C language code for subtraction of two numbers C language code for subtraction of two numbers Reviewed by Amit Waghmare on September 15, 2018 Rating: 5

C language code for addition of two numbers

7 years ago
 ADDITION OF TWO NUMBERS SIMPLE C LANGUAGE CODE FOR ADDITION OF TWO NUMBERS: #include<stdio.h> #include<conio.h> int main() {int a, b, c;//we take two integer value printf("Enter the number :");//use to print the letter, character scanf("%d%d",&a,&b);//use to scan the accept number and...
C language code for addition of two numbers C language code for addition of two numbers Reviewed by Amit Waghmare on September 14, 2018 Rating: 5

Simple C program

7 years ago
      Programming Tutorials Hello Friends. I think you are read my first blog and I hope you learned from my previous blog. In this blog, I will teach you the actual code of C language. SIMPLE C LANGUAGE CODE: #include<stdio.h>    //standard I/O function #include<conio.h> ...
Simple C program Simple C program Reviewed by Amit Waghmare on September 13, 2018 Rating: 5

History of C language

7 years ago
                                                                       LEARN C LANGUAGE           ...
History of C language History of C language Reviewed by Amit Waghmare on September 09, 2018 Rating: 5
Page 1 of 81238Next