Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?

Answer Posted / muthyala nagaraju

#include<stdio.h>
#include<conio.h>
main()
{
int i;
char ch='A';
for(i=65;i<=97;i++)
{
printf("%c",ch++);
}
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between local variable and global variable in c?

692


What are the restrictions of a modulus operator?

638


What does the format %10.2 mean when included in a printf statement?

1091


What the advantages of using Unions?

674


What is structure pointer in c?

573






Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

668


The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?

769


What are the scope of static variables?

601


what is recursion in C

616


What is file in c language?

578


How many levels of pointers have?

595


What is void main () in c?

734


Tell me what are bitwise shift operators?

659


What are header files and explain what are its uses in c programming?

612


What is pass by value in c?

597