What are the different types of pointers used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
What is a void pointer in c?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What are extern variables in c?
What is the difference between struct and union in C?
How can you allocate arrays or structures bigger than 64K?
What is a dynamic array in c?
Give a method to count the number of ones in a 32 bit number?
Explain what is a stream?
How can I use a preprocessorif expression to ?
Find if a number is power of two or not?