show how link list can be used to repersent the following
polynomial
i) 5x+2
No Answer is Posted For this Question
Be the First to Post Answer
What is key word in c language?
marge linklist
What does return 1 means in c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
What does %p mean?
what is different between auto and local static? why should we use local static?
Is javascript based on c?
What are local variables c?
without using arithmatic operator solve which number is greater??????????
Is null always defined as 0(zero)?