why we wont use '&' sing in aceesing the string using scanf
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning When we write "#include" what is # and what does include does there???
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Write a program to print fibonacci series without using recursion?
Write a program in C to reverse a number by recursive function?
What is array in C
Tell me when is a void pointer used?
Differentiate call by value and call by reference?
How do you use a 'Local Block'?
An array name contains base address of the array. Can we change the base address of the array?
Explain what are multibyte characters?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }