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 |
c program to subtract between two numbers without using '-' sign and subtract function.
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
write a program to sort the elements in a given array in c language
Write a routine that prints out a 2-D array in spiral order!
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
How to write a C program to determine the smallest among three nos using conditional operator?
What does stand for?
What is the Lvalue and Rvalue?
Is the following code legal? struct a { int x; struct a b; }
What is meant by realloc()?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?