Explain what standard functions are available to manipulate strings?
No Answer is Posted For this Question
Be the First to Post Answer
WAP to find that given no is small or capital
What's the difference between a linked list and an array?
How to calculate sum
Tell me about low level programming languages.
Explain Function Pointer?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Explain what is dynamic data structure?
can we implement multi-threads in c.
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float
How we can write a value to an address using macro..?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?