dibakar & vekatesh..uttejana here..abt ur reply for in
place reversal of linked list..wats p stands for there?
Answer / vinod l r
p stands for head node.
link stands for the next node it has to point
| Is This Answer Correct ? | 0 Yes | 0 No |
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
which types of data structure will i use to convert infix to post fix???
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Which driver is a pure java driver
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
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,
How do you construct an increment statement or decrement statement in C?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
What is substring in c?
How to declare a variable?
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
Is c dynamically typed?