-->

program to print/display 11111,1111,111,11,1 to nth term.

//program to print/display ...11111,1111,111,11,1 to nth term.
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int m=1,n,number,denom;
printf("enter value of 'n' as a number of terms \n");
scanf("%d",&n);
printf("now enter number having %d digits(1)\n",n)
scanf("%d",&number);while(n>=m)
   {
            printf("%d\n",number);
      denom=pow(10,n-1);      
         number=number/denom;
      
      n--;
   }
getch();
}
..................................
logics in mind:

if n= 6(It means a number with 6 ones i.e. 111111)
111111,11111,1111,111,...
can be shown as
first 11111
second dividing above number by 10th power of entered number -1
as the second iteration goes , it has value with 1 less digit.
it continues until the value lasts to 1.

program to print/display all ascii values of letters from A to Z and a to z..

//program  to print/display all ascii values of letters from A to Z and a to z..

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
char k='A';
while(k<='Z')
{
printf("chracter=%c and ascii value=%d | \t character=%c and ascii value=%d\n",k,k,k+32,k+32);
k++;
}
getch();
}

note:
logic applied:
we have printed character and its asciii value.
ASCII value of 'A' is 65 and 'a' is 97.
We can see difference of both is 32 so we can get ascii value by adding 32 to respective values and charcaters.

program to print/display all characters from a to z.

//program  to print/display all characters from a to z.
#include<stdio.h>
#include<conio.h>
void main()
{
int k=97;

while(k<=122)
   {
           printf("%c,",k);
      
    k++;
   }
getch();
}

logic applied:
1)You should know ascii value of all characters then apply that in loop.
ascii value of 'a' is 97 and z is 122.
so apply this value in a loop and print as a character(%c).
or
2)You can use all characters stored in a string and then display one by one.
e.g.
int j;
char string[]="abcdefghijklmnopqrstuvwxyz";
for(j=0;string[j]!='\0';j++)
{
  printf("%c\n",string[j]);
}

put this code in side void main and execute them . you get output.

program to get/sum of all even numbers lying between 1 to n natural numbers

//program  to get/sum of all even numbers lying between 1 to n natural numbers
#include<stdio.h>
#include<conio.h>
void main()
{
int k=0,n,sum=0;                         //you can take k=1, even
printf("enter value of 'n'\n");
scanf("%d",&n);
while(k<=n)
   {
      if(k%2==0)
      {      sum=sum+k;
      }
    k++;
   }
printf("the sum=%d",sum);getch();
getch();
}

-----------------------------
we can also write this program as shown below.
-------------------------------------
//program  to get/sum of all even numbers lying between 1 to n natural numbers
#include<stdio.h>
#include<conio.h>
void main()
{
int k=0,n,sum=0;                         
printf("enter value of 'n'\n");
scanf("%d",&n);
while(k<=n)
   {
            sum=sum+k;
      
    k=k+2;
   }
printf("the sum=%d",sum);
getch();
getch();
}


program to get sum of 1 to 10 natural numbers.

//program to get sum of 1 to 10 natural numbers.
#include<stdio.h>
#include<conio.h>
void main()
{
int k=1,sum=0;   //initialization
printf("enter value of 'n'\n");
scanf("%d",&n);
while(k<=n)
   {
      sum=sum+k;
      k++;
   }
printf("the sum=%d,",sum);
getch();
}

note:
here I have used 'n' as an input. We  can input any value, may be 10 or 20 or 100.
If you want to use 10 in loop directly then you can use and there would be no input(no scanf(..))

program to print/display 1,11,111,1111,11111,.... to nth term.

//program to print/display 1,11,111,1111,11111,.... to nth term.
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int k=1,m=1,n;
printf("enter value of 'n'\n");
scanf("%d",&n);
while(m<=n)
   {
      printf("%d\n",k);
      
      k=k+pow(10,m);
      m++;
   }
getch();
}

logic applied:

1,11,111,1111...
can be written as
1,10+1,100+11,1000+111....
can be written as
1,10 1+1,10 2+11,10 3+111
converting it into formula
k=k+pow(10,m);

program to print/display 1,6,11,16....nth term.

//program to print/display 1,6,11,16....nth term.
#include<stdio.h>
#include<conio.h>
void main()
{
int k=1,n;
printf("enter value of 'n'\n");
scanf("%d",&n);
while(k<=n)
   {
      printf("%d,",k);
      k=k+5;
   }
getch();
}