What is getch c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
Method Overloading exist in c ?
how to copy a string without using c function
What is the purpose of main() function?
What is indirect recursion? give an example?
Code for calculating square root without using library function, of math.h
Does c have function or method?
When should a far pointer be used?
What is the size of empty structure in c?
What is the difference between procedural and declarative language?
Explain what is the most efficient way to store flag values?