answersLogoWhite

0

#include<stdio.h>

#include<conio.h>

void main()

{

char ch;

clrscr();

printf("Enter a Character");

scanf("%c",&ch);

if(ch>=65 && ch<=90)

ch=ch+32;

printf("Upper Case =%c",ch);

getch();

}

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Function of power supply?

to convert AC into DC voltage without fluctuation


Write a Program to convert decimal number into hexadecimal no without using function and string?

This is not a question.


Is it possible to convert a string into integer without using any function in c?

Yes


How does the mutate function work in programming languages?

The mutate function in programming languages is used to change the value of a variable or data structure. It allows you to modify the content of a variable without creating a new one. This can be useful for updating information or making adjustments to data within a program.


What is the significance of the lambda value in the context of programming languages?

In programming languages, the lambda value is significant because it represents an anonymous function or a function without a name. Lambda functions are commonly used for creating quick, temporary functions or for passing functions as arguments to other functions. They are a key feature in functional programming languages and allow for more concise and flexible coding.


How do you convert small case to upper case in Excel 2007 without using mouse?

You can use the UPPER function.


How programming language is useful in system programming?

Without programming languages you couldn't write (system) programs.


Is inplace a word?

Yes, &quot;inplace&quot; is a word, typically used in the context of programming to describe a function or operation that modifies the original input data structure without creating a copy.


Is multiprogramming possible without interrupts?

Yes, multi-programming is possible without any interrupts. Provided that a given type of code is properly written then multi-programming is possible without any interrupts.


What is string library functions syntax?

String library function is one which is used to perform an operation in C-programming,without which library functions likestrlen(),strcp(),strcmp(),strdup(),strrev(),etc..,.can be performed


What is the significance of the lambda value in the context of functional programming?

In functional programming, the lambda value represents an anonymous function that can be passed as a parameter or returned as a result. It allows for more flexible and concise coding by enabling the creation of functions on-the-fly without needing to explicitly name them. Lambda functions are commonly used in higher-order functions and can help simplify complex operations in functional programming.


Why should a function or a variable be declared before its first use?

It is somewhat syntax of programming. But when program runs,device known as pre-processor process statements before main function. So when we use that function inside main function it will get idea and run directly without showing any error. So for compilers simplicity and fast execution purpose it is necessary to declare function before its use.