Write an algorithm to draw a 3D pie chart ?
Read Answers(2) | 5,184 Views |
How would you do conditional compilation ?
Read Answers(3) | 5,978 Views |
Write a function that allocates memory for a two-dimensional array of given size(parameter x & y)
Read Answers(9) | 6,898 Views |
Print an integer using only putchar. Try doing it without using extra storage.
Read Answers(10) | 8,147 Views |
Write efficient code for extracting unique elements from a sorted list of array.
Read Answers(16) | 8,120 Views |
Given an array t[100] which contains numbers between 1 and 99. Return the duplicated value. Try both O(n) and O(n-square).
Read Answers(24) | 11,738 Views |
Write a small lexical analyzer for expressions like “a*b” etc.
Read Answers(3) | 6,481 Views |
You are given two strings: S1 and S2. Delete from S2 all those characters which occur in S1 also and create a clean S2 with the relevant characters deleted.
Read Answers(9) | 7,562 Views |
Implement a TIC-TAC-TOE game assuming Computer as one of the player. Optimize it for fast computer play time and space. Do some analysis on memory and processing requirements .
Read Answer(1) | 3,811 Views |
Write a routine to draw a circle given a center coordiante (x,y) and a radius (r) without making use of any floating point computations.
Read Answers(6) | 12,368 Views |