What's the difference between constant char *p and char * constant p?
No Answer is Posted For this Question
Be the First to Post Answer
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
What is huge pointer in c?
What are types of functions?
Explain is it better to bitshift a value than to multiply by 2?
What are the rules for the identifier?
Can you please explain the difference between strcpy() and memcpy() function?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
Explain what is the difference between far and near ?
What is the need of structure in c?
What language is lisp written in?
Explain how do you override a defined macro?