How important is structure in life?
No Answer is Posted For this Question
Be the First to Post Answer
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
What is string length in c?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Explain how do you declare an array that will hold more than 64kb of data?
Write a program to swap two numbers without using third variable?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Write a program to swap two numbers without using a temporary variable?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Write a function in c to find the area of a triangle whose length of three sides is given.