Is using exit() the same as using return?
No Answer is Posted For this Question
Be the First to Post Answer
What is zero based addressing?
Why does notstrcat(string, "!");Work?
Explain what is the difference between #include and #include 'file' ?
difference between Low, Middle, High Level languages in c ?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
what is C?
how to write optimum code to divide a 50 digit number with a 25 digit number??
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Explain how can I write functions that take a variable number of arguments?
What does %2f mean in c?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }