What does. int *x[](); means ?
No Answer is Posted For this Question
Be the First to Post Answer
what are the various memory handling mechanisms in C ?
Explain how can I open a file so that other programs can update it at the same time?
what is the meaning of 'c' language
What do you mean by keywords in c?
What are header files? What are their uses?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Explain function?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
write a method for an array in which it can display the largest n next largest value.
what are two categories of clint-server application development ?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?