46./*Write
a program to print this Series :-
AaBbCcDd……………Zz
#include<stdio.h>
#include<conio.h>
main()
{
int a,b;
clrscr();
for(a=65;a<=90;a++)
printf("%c%c",a,a+32);
getch();
}
OUTPUT
AaBbCcDd………….Zz
What is the use of variable b in your program?
ReplyDeleteThanks to your codes, It helps me at my assignment in assembly programming, :)
ReplyDelete