What are the advantages of using new operator as compared to the function malloc ()?
No Answer is Posted For this Question
Be the First to Post Answer
what is the role you expect in software industry?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
how could explain about job profile
Write a Program to accept different goods with the number, price and date of purchase and display them
What is data type long in c?
What is putchar() function?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is structure data type in c?
please give me some tips for the placement in the TCS.
How old is c programming language?
What is the difference between array and linked list in c?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1