Efficient data structure for store/search list of 1000 records
a)array b)double linked list c)circular queue d)hash table
Answers were Sorted based on User's Feedback
what do you mean by enumeration constant?
What does the message "warning: macro replacement within a string literal" mean?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Difference between strcpy() and memcpy() function?
What are the advantages of Macro over function?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Why do we use static in c?
write the output of following code .. main() { static int a[]={10,20,30,40,50}; int *ptr=a; static int arr[2][2]={1,2,3,4}; char str[]="ABCD * 4#"; char *s=str+2; int i,j; for(i=0;i<5,i++) printf("%d",*ptr++); for(i=0;i<2;i++) for(j=0;j<2;j++) printf("%d\n",*(*(n+i)+j)); printf("%c\n%c\n%c\n",*(str+2),*s++,*--s); }
sir, i cannot find the way how to write aprogram by using array on queue
what is an inline function?
What are header files in c?