What functions are in conio h?
No Answer is Posted For this Question
Be the First to Post Answer
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is difference between union All statement and Union?
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
What is a macro?
How do I convert a string to all upper or lower case?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
print 1-50 with two loop & two print Statement
Explain what is the difference between functions getch() and getche()?
What is C language ?
code for reverse alternate words from astring