What are lookup tables in c?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between a structure and a union.
What is the benefit of using const for declaring constants?
how would a 4*3 array A[4][3] stored in Row Major Order?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Can we replace the struct function in tree syntax with a union?
write a 'c' program to sum the number of integer values
What are the different types of pointers?
how to find the kth smallest element in the given list of array elemnts.
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
What is the difference between constant pointer and pointer to a constant. Give examples.
write a program which will count occurance of a day between two dates.
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?