Explain threaded binary trees?
No Answer is Posted For this Question
Be the First to Post Answer
what is difference between ANSI structure and C99 Structure?
Can a pointer point to null?
write a program for odd numbers?
Write an interactive c program that will encode or decode a line of text. To encode a line of text, proceed as follows: Convert each character, including blank spaces, to its ASCII equivalent. Generate a positive random integer. Add this integer to the ASCII equivalent of each character. The same random integer will be used for the entire line of text. Suppose that N1 represents the lowest permissible value in the ASCII code, and N2 represents the highest permissible value. If the number obtained in step 2 above exceeds N2, then subtract the largest possible multiple of N2 from this number, and add the remainder to N1. Hence the encoded number will always fall between N1 and N2, and will therefore always represent some ASCII character. Display the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text. Be certain, however, that the same random number is used in decoding as was used in encoding.
1 Answers Amazon, CSJM, HCL, Microsoft, TCS, Wipro,
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?
How will you allocate memory to double a pointer?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
How would you print out the data in a binary tree, level by level, starting at the top?
How do we print only part of a string in c?
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
what is the size of an integer variable?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.