Answer Posted / arunkumar
Stack overflow...
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What is a buffer in c?
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); }
What does 1f stand for?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
Explain the ternary tree?
Explain is it better to bitshift a value than to multiply by 2?
How are portions of a program disabled in demo versions?
What are linker error?
What is identifiers in c with examples?
Is calloc better than malloc?
Why ca not I do something like this?
What is volatile variable in c with example?
Define C in your own Language.
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What are the 4 types of unions?