please send me the code for multiplying sparse matrix using c
No Answer is Posted For this Question
Be the First to Post Answer
write a program to find the frequency of a number
write a program to find lcm and hcf of two numbers??
Explain bitwise shift operators?
number of times a digit is present in a number
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
How can I manipulate strings of multibyte characters?
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
What are multidimensional arrays?
Explain #pragma in C.
What is the concatenation operator?