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 is structure pointer in c?
Is array name a pointer?
What are types of structure?
What do you mean by dynamic memory allocation in c? What functions are used?
Explain #pragma statements.
what is the different bitween abap and abap-hr?
What is %s and %d in c?
What is 'bus error'?
What is the difference between Printf(..) and sprint(...) ?
Explain what is the use of a semicolon (;) at the end of every program statement?
What is the benefit of using #define to declare a constant?
Discuss the function of conditional operator, size of operator and comma operator with examples.
Is it possible to have a function as a parameter in another function?
write a program in c language to print your bio-data on the screen by using functions.
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..