How many levels of pointers can you have?
No Answer is Posted For this Question
Be the First to Post Answer
why we use "include" word before calling the header file. is there any special name for that include??????
while initialization of array why we use a[][2] why not a[2][]...?
Give a method to count the number of ones in a 32 bit number?
an algorithem for the implementation of circular doubly linked list
Explain how do you list files in a directory?
Explain the use of keyword 'register' with respect to variables.
What is a pointer variable in c language?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
A program to allow an input operand and operator from the operator and read on the display and output operand.
What does == mean in texting?