What does double pointer mean in c?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
how to determine the complexity of an algorithm as log(n)
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
difference between c and c++
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What is the difference between array_name and &array_name?
How will you delete a node in DLL?
whitch value return void main?
What are the types of bitwise operator?
4. main() { int c=- -2; printf("c=%d",c); }