GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
No Answer is Posted For this Question
Be the First to Post Answer
How is pointer initialized in c?
What is the scope of global variable in c?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
i want to have a program to read a string and print the frequency of each character and it should work in turbo c
when to use : in c program?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Explain what is the concatenation operator?
which operator is known as dummy operator in c?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
What is #pragma statements?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.