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 |
Why pointers are used?
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
What are header files in c?
How macro execution is faster than function ?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
What is spaghetti programming?
plz answer..... a program that reads non-negative integer and computes and prints its factorial
What is header file in c?
Is it cc or c in a letter?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Can include files be nested? How many levels deep can include files be nested?