find the sum of two matrices and WAP for it.
No Answer is Posted For this Question
Be the First to Post Answer
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
The statement, int(*x[]) () what does in indicate?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Suggesting that there can be 62 seconds in a minute?
What is the difference between call by value and call by reference in c?
How would you sort a linked list?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
Why do we need arrays in c?
write a program for even numbers?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
what is the meaning of 'c' language