Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
Answers were Sorted based on User's Feedback
#include<stdio.h>
#include<conio.h>
void main()
{
int i,sum=65;
clrscr();
printf("*");
for(i=1;i<=26;i++)
{
sum=sum+1;
printf("%c",sum);
}
getch();
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / 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 |
How can I direct output to the printer?
can any one tel me wt is the question pattern for NIC exam
When should the register modifier be used? Does it really help?
what is a constant pointer in C
What are categories used for in c?
How to calculate sum
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
how to set Nth bit of variable by using MACRO
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
c program to input values in a table(using 2D array) and print odd numbers from them
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
What is %s and %d in c?