What is auto keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of using linked list and array?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Can you subtract pointers from each other? Why would you?
what are the different storage classes in c?
Explain what is the benefit of using an enum rather than a #define constant?
What is a memory leak in structures? How can we rectify that?
An array name contains base address of the array. Can we change the base address of the array?
What is #define used for in c?
Define the scope of static variables.
how to make a scientific calculater ?
a C prog to swap 2 no.s without using variables just an array?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }