please send me the code for multiplying sparse matrix using c


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"

3 Answers  


ASCII stands for

1 Answers  


Explain a file operation in C with an example.

0 Answers   Amdocs,


what is difference between array and structure?

44 Answers   College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,


what is constant pointer?

3 Answers  






#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100

1 Answers  


What is calloc()?

0 Answers   Adobe,


What are the uses of pre-processor directives?

2 Answers  


I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.

0 Answers   Oracle,


Wt are the Buses in C Language

0 Answers   Infosys,


What is the most efficient way to count the number of bits which are set in an integer?

0 Answers  


which header file contains main() function in c?

17 Answers   Google, HCL, TCS,


Categories