Explain what is the difference between a string and an array?
No Answer is Posted For this Question
Be the First to Post Answer
how we can make 3d venturing graphics on outer interface
what is a function pointer and how all to declare ,define and implement it ???
How arrays can be passed to a user defined function
Why do we use pointer to pointer in c?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
Write a program to print factorial of given number without using recursion?
code for find determinent of amatrix
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
What is "Hungarian Notation"?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }