What is a Double Pointer? What are its specific uses.
How to allocate arrays or structures bigger than 64K?
How to return multiple values from a function?
How to call a function, given its name as a string?
What is the use of null pointers?
Latest Answer: Usually in C. If are nor initialized any thing automatically some garbage information will be palced in variable. In pointers also same if we are not initialized with any variable address it will point to some memory. Avoid accessing of some other memory ...
What is Link list? What is purpose of link list in programming.
What is Storage Class?
What are Storage Variables?
How to find size of an variable without using sizeof operator?
How to view files created by a C program in Windows mode?
How to concatenate the two string without using the predefined functions (such as strcat and strlen)?
Latest Answer: void main() { char s[20]; int i,n; printf("enter a string"); scanf("%s",s); for(i=0;s[i]!='';i++) { ...
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top