Difference between Function to pointer and pointer to function
No Answer is Posted For this Question
Be the First to Post Answer
How do I get a null pointer in my programs?
what are bit fields in c?
What is the use of gets and puts?
What is a newline escape sequence?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
what is the use of #pragma pack, wer it is used?
Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????
What is output redirection?
Why c is called top down?
What type is sizeof?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
How can you increase the size of a dynamically allocated array?