Explain how do you use a pointer to a function?
No Answer is Posted For this Question
Be the First to Post Answer
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
Write a program to generate prime factors of a given integer?
The file stdio.h, what does it contain?
difference between the array and linked list general difference related to memory
how to print this sereis 2 4 3 6 5..........?
difference between native and cross compilers
Software Interview Questions
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Write a code to determine the total number of stops an elevator would take to serve N number of people.
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Why do we use & in c?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }