What is function pointer c?
No Answer is Posted For this Question
Be the First to Post Answer
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
what are the uses of structure?
What is c method?
Explain what is the purpose of "extern" keyword in a function declaration?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
What is zero based addressing?
what is void pointer?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
Why do we use return in c?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What are the different types of errors?