write a fuction for accepting and replacing lowercase
letter to'Z' with out using inline function.
Answer Posted / sandhya.kakani
#include<stdio.h>
#include<string.h>
main()
{
char ch;
clrscr();
printf("enter any character");
scanf("%c",&ch);
if(ch>=97&&ch<=122)
{
printf("u enterd small letter \n");
function(ch);
}
}
function(char c)
{
char c='z';
printf("replaced lower case letter into uppercase %c",c);
}
| Is This Answer Correct ? | 19 Yes | 8 No |
Post New Answer View All Answers
Explain how can you restore a redirected standard stream?
Combinations of fibanocci prime series
What is the use of header files?
What is a 'null pointer assignment' error?
How do you determine a file’s attributes?
Explain bitwise shift operators?
What is pointer in c?
Using which language Test cases are added in .ptu file of RTRT unit testing???
explain what is an endless loop?
What is extern storage class in c?
Explain what is the heap?
What is integer constants?
What is the acronym for ansi?
What is preprocessor with example?
explain what is fifo?