print 1 to 10 numbers without using loop
print 1 to 10 numbers without using loop #include<stdio.h> #include<conio.h> int main() { int a=1; top: if(a<=10) { …
Lorem Ipsum has been the industry's standard dummy text.
print 1 to 10 numbers without using loop #include<stdio.h> #include<conio.h> int main() { int a=1; top: if(a<=10) { …
Number Square #include<stdio.h> #include<conio.h> int main() { int i,j; for(i=1;i<=10;i++) { for(j=1;j<=10;j++)…
Number pattern #include<stdio.h> #include<conio.h> int main() { int i,j; for(i=10;i>=0;i--) { for(j=10;j>i;j--)…
Number pattern #include<stdio.h> #include<conio.h> int main() { int i,j; for(i=10;i>=1;i--) { for(j=1…
printing half pyramid #include<stdio.h> #include<conio.h> int main() { int i,j; for(i=0;i<=10;i++) { for(j=0;j<i…
Entered character Alphabet or not #include <stdio.h> int main() { char c; printf("Enter a character: "); scanf(&…
user registration and login page using C #include<stdio.h> int main() { char name[20],name1[20],email[20]; char password[10],pwd[10]; …
how to print matrix in C #include<stdio.h> int main() { int a[10][10]={{1,2},{3,4}}; for(i=0;i<2;i++) { for(j=0;j<2;…
print password in C #include <stdio.h> int main() { char pwd[10],usr[10], ch; int i; printf("Enter User name: "); …
Print The Array with Index values #include<stdio.h> int main() { int a[7]={2,3,4,6,8}; int i; for(i=0;i<5;i++) { p…
How to check data size of variable #include<stdio.h> int main() { int a; char b; printf("size of a=%d\nsize of b=%d",sizeo…
#include<stdio.h> int main() { int a=1; while(a<=255) { printf("%d=%c",a,(char)a)…