Explain how can I convert a number to a string?
No Answer is Posted For this Question
Be the First to Post Answer
why do we use # in c-language?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
What is bash c?
Name the language in which the compiler of "c" in written?
Not all reserved words are written in lowercase. TRUE or FALSE?
What is getch?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
How can I insert or delete a line (or record) in the middle of a file?
What is the relationship between pointers and data structure?
where are auto variables stored? What are the characteristics of an auto variable?
Function to find the given number is a power of 2 or not?