Can a void pointer point to a function?
No Answer is Posted For this Question
Be the First to Post Answer
What functions are used in dynamic memory allocation in c?
How old is c programming language?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
When should the volatile modifier be used?
a C prog to swap 2 no.s without using variables just an array?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What are the types of data files?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
How do we open a binary file in Read/Write mode in C?
What are compound statements?
what is the definition of storage classes?
Can you write the function prototype, definition and mention the other requirements.