WHAT IS RTGS N MINIMUM AMT TO B TRANSFERD N WHAT R THE
CHARGES ON MINIMUM AMT N IN WHICH BANK WE CAN DO IT?
Write a function that accepts a sentence as a parameter, and returns the same with each of its words reversed. The returned sentence should have 1 blank space between each pair of words. Demonstrate the usage of this function from a main program. Example: Parameter: “jack and jill went up a hill” Return Value: “kcaj dna llij tnew pu a llih”
Define function pointers?
what is the difference between. system call and library function?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
What is define directive?
What does node * mean?
When should a far pointer be used?
Explain what is the benefit of using const for declaring constants?
What is the difference b/w Structure & Union?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
Differentiate call by value and call by reference?