What are pointers? Why are they used?
No Answer is Posted For this Question
Be the First to Post Answer
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
write a program to generate 1st n fibonacci prime number
Why doesnt that code work?
write a program to arrange the contents of a 1D array in ascending order
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
WHAT IS FLOAT?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
how to write a program which adds two numbers without using semicolon in c
which is conditional construct a) if statement b) switch statement c) while/for d) goto
#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); }
what is difference between strcmp & palindrome?