Can I pass constant values to functions which accept structure
arguments?
Answers were Sorted based on User's Feedback
Answer / guest
No. C has no way of generating anonymous structure values.
| Is This Answer Correct ? | 2 Yes | 1 No |
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
writw a program to insert an element in the begning of a doubly linked list
Derive the complexity expression for AVL tree?
Why can’t we compare structures?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
Is double link list a linear data structure? If Yes, Why?If No, Why?
Is c high or low level?
What are the uses of pre-processor directives?
write a program for even numbers?
What's the difference between constant char *p and char * constant p?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?