What are run-time errors?
No Answer is Posted For this Question
Be the First to Post Answer
To what value do nonglobal variables default? 1) auto 2) register 3) static
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
what is the significance of static storage class specifier?
provide an example of the Group by clause, when would you use this clause
Why c is faster than c++?
What is #define in c?
Find if a number is power of two or not?
Write code for finding depth of tree
swapping of two numbers without using third variable using AND and OR operators
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
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));