what is the different bitween abap and abap-hr?
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
Write a program to print factorial of given number without using recursion?
What is the meaning of int *x[]();?
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
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
What is c language & why it is used?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
How to write a program to receive an integer & find its octal equivalent by using for loop?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above