Linked list is a Linear or non linear explain if linear how
it working as a non linear data structures
No Answer is Posted For this Question
Be the First to Post Answer
#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?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
How will you allocate memory to double a pointer?
inline function is there in c language?
What is a stream?
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
Where are local variables stored in c?
Explain what is output redirection?
Explain what are the __date__ and __time__ preprocessor commands?
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above