write a c program for print your name .but,your name may be small
letter mean print a capital letter or your name may be capital
letter mean print a small letter .example
\\enter ur name :
sankar
The name is: SANKAR
(or)
enter your name:SAnkar
The name is:saNKAR
Answer Posted / bijoy
#include<stdio.h>
main()
{
printf("your name");
getchar();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
In a switch statement, explain what will happen if a break statement is omitted?
Explain what are compound statements?
What is the explanation for prototype function in c?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
What are the different file extensions involved when programming in C?
What library is sizeof in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
When is a “switch” statement preferable over an “if” statement?
What does. int *x[](); means ?
What is the default value of local and global variables in c?
Write a program to check palindrome number in c programming?
what is stack , heap ,code segment,and data segment
What is an endless loop?
What is 'bus error'?
What does the message "automatic aggregate intialization is an ansi feature" mean?