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
What is the difference between the = symbol and == symbol?
Can two or more operators such as and be combined in a single line of program code?
What do mean by network ?
develop algorithms to add polynomials (i) in one variable
What is volatile, register definition in C
Why can arithmetic operations not be performed on void pointers?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
Tell me can the size of an array be declared at runtime?
What is a constant and types of constants in c?
How do you convert strings to numbers in C?
What is s or c?
What is the sizeof () operator?
a program that can input number of records and can view it again the record
What are the 4 data types?
What does it mean when a pointer is used in an if statement?