Explain how can I convert a number to a string?
No Answer is Posted For this Question
Be the First to Post Answer
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
What is an lvalue?
What's a "sequence point"?
What is an array? What the different types of arrays in c?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Why is sizeof () an operator and not a function?
What are shell structures used for?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What are local variables c?
can i know the source code for reversing a linked list with out using a temporary variable?
can we change the default calling convention in c if yes than how.........?
Write a program to generate prime factors of a given integer?