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
write an algorithm to display a square matrix.
What is #line used for?
what is dangling pointer?
What are c identifiers?
Two's compliment of -5
What is the difference between printf and scanf in c?
Write code for finding depth of tree
write a program that will print %d in the output screen??
Explain how can I convert a number to a string?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
whitch value return void main?