How do I copy files?
No Answer is Posted For this Question
Be the First to Post Answer
What is scope and lifetime of a variable in c?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
write a program to find lcm and hcf of two numbers??
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
what is the advantage of software development
How do you write a program which produces its own source code as its output?
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
program to find the magic square
read a number & print all its devisors using c-program?
const char * char * const What is the differnce between the above tow?.
Explain what is the difference between #include and #include 'file' ?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }