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 indirection? How many levels of pointers can you have?
What's the right way to use errno?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
Write a progarm to find the length of string using switch case?
What is the use of function in c?
The differences between Windows XP and Windows Visa
What are the 4 types of unions?
How do you convert strings to numbers in C?
What is an expression?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is the purpose of sprintf() function?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?