What the different types of arrays in c?
No Answer is Posted For this Question
Be the First to Post Answer
Can a void pointer point to a function?
Will Macros support multiple arguments ?
What is LINKED LIST? How can you access the last element in a linked list?
char ch=10;printf("%d",ch);what is the output
What is declaration and definition in c?
Explain #pragma in C.
What is operator promotion?
What does typeof return in c?
Explain the bubble sort algorithm.
What does d mean?
find the sum of two matrices and WAP for it.
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?