What is pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the easiest sorting method to use?
What are the benefits of c language?
Write a program to find given number is even or odd without using any control statement.
How can I pad a string to a known length?
how 2 compile & execute c program with out using editor?
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
What does *p++ do? What does it point to?
When was c language developed?
how to write a program which adds two numbers without using semicolon in c
write a program in c language for the multiplication of two matrices using pointers?
How can I read a directory in a c program?
Describe the difference between = and == symbols in c programming?