What is pointer to pointer in c language?
No Answer is Posted For this Question
Be the First to Post Answer
is assignment operator is arithmatic or not
how to sort two array of characters and make a new array of characters.
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
Explain how can I prevent another program from modifying part of a file that I am modifying?
what is the similarities between. system call and library function?
to find the program of matrix multiplication using arrays
What is hashing in c language?
Explain modulus operator. What are the restrictions of a modulus operator?
What do you mean by command line argument?
What is the most efficient way to store flag values?
Diff between for loop and while loop?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }