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
Why does the call char scanf work?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
Add Two Numbers Without Using the Addition Operator
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
program for reversing a selected line word by word when multiple lines are given without using strrev
Explain what is a program flowchart and explain how does it help in writing a program?
how to find a 5th bit is set in c program
Between macros and functions,which is better to use and why?
What does the message "warning: macro replacement within a string literal" mean?
How can I use a preprocessorif expression to ?
What is #define used for in c?