what is the basis for selection of arrays or pointers as
data structure in a program
what is C?
How do you use a pointer to a function?
write a program to rearrange the array such way that all even elements should come first and next come odd
What are the different categories of functions in c?
Differentiate between new and malloc(), delete and free() ?
Difference between exit() and _exit() function?
How to swap 3 numbers without using 4th variable?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
Which is better between malloc and calloc?
What is the sizeof () a pointer?