Explain how can I convert a string to a number?
No Answer is Posted For this Question
Be the First to Post Answer
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is static and volatile in c?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
How are portions of a program disabled in demo versions?
where does it flourished?
Write the Program to reverse a string using pointers.
Which type of language is c?
what is the difference b/w NULL and null?
What are the two types of structure?
What is use of integral promotions in c?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
Explain how does flowchart help in writing a program?