What is indirection in c?
No Answer is Posted For this Question
Be the First to Post Answer
what do structure language means?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
how to connect oracle in C/C++.
what is the difference between char * const and const char *?
what is the most appropriate way to write a multi-statement macro?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
How to write a program for swapping two strings without using 3rd variable and without using string functions.
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
Which is best linux os?
Explain what is the benefit of using enum to declare a constant?
If input is 123 then how to print 100 and 20 and 3 seperately?