Answer Posted / udayakumar
local variables are the variables which are declared with in
a function and the scope of that variables are only within
that function.Global variables are the variables which are
declared globally.Since it is declared globally it can
accessible to all the functions inside the program...
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
how to build a exercise findig min number of e heap with list imlemented?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
What is data type long in c?
What are the data types present in c?
When was c language developed?
Under what circumstances does a name clash occur?
How would you rename a function in C?
Give differences between - new and malloc() , delete and free() ?
can we implement multi-threads in c.
Tell me can the size of an array be declared at runtime?
What is the advantage of a random access file?
Explain the difference between #include "..." And #include <...> In c?
Is c weakly typed?
Write a program to reverse a given number in c?