Where can I get an ansi-compatible lint?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of Scanf Print, getchar, putchar, function?
simple c program for 12345 convert 54321 with out using string
What does the c in ctime mean?
logic for x=y^n
64/square(4)
What is .obj file in c?
if we take a number as a char then can we manipulate(add, subtract) on this number
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
? ???Mirror Mirror on the wall????????
What is the difference between %d and %*d in C
How does free() know explain how much memory to release?