could you please send the program code for multiplying sparse
matrix in c????
int a=1; printf("%d %d %d",a++,a++,a); need o/p in 'c' and what explanation too
Cluster head selection in Wireless Sensor Network using C programming language.
how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns
main() { char *p="GOOD"; char a[ ]="GOOD"; printf("\n sizeof(p) = %d, sizeof(*p) = %d, strlen(p) = %d", sizeof(p), sizeof(*p), strlen(p)); printf("\n sizeof(a) = %d, strlen(a) = %d", sizeof(a), strlen(a)); }
Program to find the largest sum of contiguous integers in the array. O(n)
What are the following notations of defining functions known as? i. int abc(int a,float b) { /* some code */ } ii. int abc(a,b) int a; float b; { /* some code*/ }
main() { char string[]="Hello World"; display(string); } void display(char *string) { printf("%s",string); }
main() { int i=10; i=!i>14; Printf ("i=%d",i); }
write a c program to Create employee record by taking details like name, employee id, address and phone number. While taking the phone number, take either landline or mobile number. Ensure that the phone numbers of the employee are unique. Also display all the details
main() { static char names[5][20]={"pascal","ada","cobol","fortran","perl"}; int i; char *t; t=names[3]; names[3]=names[4]; names[4]=t; for (i=0;i<=4;i++) printf("%s",names[i]); }
What is data _null_? ,Explain with code when u need to use it in data step programming ?
why is printf("%d %d %d",i++,--i,i--);