In C language what is a 'dangling pointer'?
No Answer is Posted For this Question
Be the First to Post Answer
input any 4 digit number and find the difference of all the digits?
What is main () in c language?
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); }
wat are the two methods for swapping two numbers without using temp variable??
Find if a number is power of two or not?
What was noalias and what ever happened to it?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?
How do you write a program which produces its own source code as its output?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
What is the Purpose of 'extern' keyword in a function declaration?