praagnovation
No Answer is Posted For this Question
Be the First to Post Answer
can a union be self-referenced?
Write a program of prime number using recursion.
Why c is known as a mother language?
Explain argument and its types.
write a own function to compare two strings with out using stringcomparition function?
Differentiate between the = symbol and == symbol?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
What is structure padding in c?
How do I get an accurate error status return from system on ms-dos?
How can my program discover the complete pathname to the executable from which it was invoked?
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
while initialization of array why we use a[][2] why not a[2][]...?