What is pointer to pointer in c language?
No Answer is Posted For this Question
Be the First to Post Answer
difference between string and array?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
what is the code to display color fonts in the output?
What are the primitive data types in c?
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
How do you write a program which produces its own source code as output?
How is a macro different from a function?
write a program whose output will be- 1 12 123 1234
What's the difference between struct x1 { ... }; and typedef struct { ... } x2; ?
how many errors in c explain deply
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
How do I convert a string to all upper or lower case?