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 / vadivelt
Hi all,
In my post, Answer #1 please change the statement in if
condition from *ptr <= 96 to *ptr <= 90
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Why do we use int main?
Differentiate between calloc and malloc.
What is a memory leak? How to avoid it?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Tell us something about keyword 'auto'.
How pointers are declared?
Write a program to reverse a given number in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Why functions are used in c?
write a proram to reverse the string using switch case?
What are the different types of errors?
Describe the difference between = and == symbols in c programming?
How to explain the final year project as a fresher please answer with sample project
What is the difference between int main and void main?
where are auto variables stored? What are the characteristics of an auto variable?