When is a void pointer used?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the Difference between the New and Malloc keyword.
What is the use of getch ()?
How do I determine whether a character is numeric, alphabetic, and so on?
What are the 5 types of organizational structures?
Explain what are the __date__ and __time__ preprocessor commands?
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; } }
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
How can I convert integers to binary or hexadecimal?
Do you know pointer in c?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
What is scope rule in c?
What is array within structure?