Write the Program to reverse a string using pointers.
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
Is c pass by value or reference?
Why ca not I do something like this?
How to calculate sum
What is the difference between declaring a variable by constant keyword and #define ing that variable?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
Explain what are multidimensional arrays?
What are the types of macro formats?
Explain the difference between call by value and call by reference in c language?
What is malloc() function?
write an algorithm and c program to add two 2x2 matrics
What are valid signatures for the Main function?