find the sum of two matrices and WAP for it.
No Answer is Posted For this Question
Be the First to Post Answer
Why doesnt that code work?
main() { float a=3.2e40; printf("%d",a); }
What is difference between union and structure in c?
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
Write a code to generate divisors of an integer?
What is the newline escape sequence?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
how to use enum datatype?Please explain me?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What is the exact difference between '\0' and ""
What is strcpy() function?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.