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

Post New Answer

More C Interview Questions

What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

3 Answers   Accenture,


Code for calculating square root without using library function, of math.h

4 Answers   IBM,


Can you please explain the scope of static variables?

0 Answers  


What is structure padding in c?

0 Answers  


What are the features of the c language?

0 Answers  


Write a code to generate a series where the next element is the sum of last k terms.

0 Answers   Aspiring Minds,


2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. &#61550; Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. &#61550; When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. &#61550; Sequence of take-off is the sequence of addition to the waitlist

0 Answers  


Explain how do I determine whether a character is numeric, alphabetic, and so on?

0 Answers  


what is the use of ‘auto’ keyword?

1 Answers  


List the difference between a While & Do While loops?

0 Answers   Accenture,


what is the difference between %d and %*d in c languaga?

7 Answers   TCS,


How do I send escape sequences to control a terminal or other device?

0 Answers  


Categories