String copy logic in one line.
Answers were Sorted based on User's Feedback
What is full form of PEPSI
What is the main difference between STRUCTURE and UNION?
find A^B using Recursive function
Write a Program that Inputs 10 Numbers in an Array and Show the Maximum Number
Write a program to check whether the number is prime and also check if it there i n fibonacci series, then return true otherwise return false
main() { if ((1||0) && (0||1)) { printf("OK I am done."); } else { printf("OK I am gone."); } } a. OK I am done b. OK I am gone c. compile error d. none of the above
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it.
What is data _null_? ,Explain with code when u need to use it in data step programming ?
/*what is the output for*/ void main() { int r; printf("Naveen"); r=printf(); getch(); }
main() { int i=-1; +i; printf("i = %d, +i = %d \n",i,+i); }
How can i find first 5 natural Numbers without using any loop in c language????????
Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?