Linked list is a Linear or non linear explain if linear how
it working as a non linear data structures
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
Write a program to identify if a given binary tree is balanced or not.
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
What are data types in c language?
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
c program to input values in a table(using 2D array) and print odd numbers from them
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5