what is the self-referential structure?
Answer / sarika
A structure which contains a pointer to itself is called a
self-referential structure..
| Is This Answer Correct ? | 17 Yes | 2 No |
What does int main () mean?
How would you write qsort?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
What does malloc () calloc () realloc () free () do?
what is answer for perfect number????????????????
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What are local and global variables?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }