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
What are the standard predefined macros?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Write a program to swap two numbers without using third variable?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is huge pointer in c?
What is the difference between typedef struct and struct?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Why malloc is faster than calloc?
How many types of operator or there in c?
What will be your course of action for a push operation?
What is echo in c programming?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
Can you write the function prototype, definition and mention the other requirements.
What is static identifier?
What is the use of void pointer and null pointer in c language?