Why do we use return in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is operator precedence?
Write a code of a general series where the next element is the sum of last k terms.
what is difference between ANSI structure and C99 Structure?
WHAT IS RTGS N MINIMUM AMT TO B TRANSFERD N WHAT R THE CHARGES ON MINIMUM AMT N IN WHICH BANK WE CAN DO IT?
what is a function method?give example?
What are dangling pointers?
Are c and c++ the same?
Difference between MAC vs. IP Addressing
Who developed c language and when?
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
What is the difference b/w Structure & Class?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these