Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags

8 Posted Topics

Member Avatar for sumisimmy

The solution is easy.Just show us what you did so far.If you didn't write anything,try to decide what kind of information you will use on your software.I mean determine the variables such as double bill_amount; double food_stock;

Member Avatar for sumisimmy
-1
120
Member Avatar for Aadhya169

Problem solving and program design in C - Jeri R. Hanly,Eliot B. Koffman

Member Avatar for whitech
-1
298
Member Avatar for Himanshu Chawla

i'll give you a solution for the second one. int i,j,n=5; for(i=0;i<n;i++) { for(j=0;j<n;j++) { printf("%d ",j+1); } n--; printf("\n"); for(j=0;j<i+1;j++) printf(" "); } first for loop return 5 times because we define n(number that you wanna print) as 5.That means we gonna print 5 lines of numbers. second for …

Member Avatar for felceyboy
-2
201
Member Avatar for whitech

Hi everyone I wish a happy new year for all. This is the code that i wrote so far. TITLE MASM Template (main.asm) ; Description: ; ; Revision date: INCLUDE Irvine32.inc INCLUDE macros.inc Employee STRUCT idnum BYTE "0000",0 lastname BYTE 30 DUP(0) years WORD 0 Employee ENDS .data workers Employee …

Member Avatar for ShiftLeft
0
254
Member Avatar for whitech

I have to write a code.The program compute random sentences by using singly linked list date structure.The same word cannot be used more than once. I've already written the some codes which takes the list. [CODE]// random_sentence_operator.cpp : Defines the entry point for the console application. // #include <stdio.h> #include …

Member Avatar for harinath_2007
0
116
Member Avatar for whitech

I've to write a program which gets a colour from user.Users will enter the colour's name if the colours is exist in my string,program will give a msg.If it doesn't exist give an error msg and stop program.I've already write a code but it doesnt works accurately. [CODE]int i,j; void …

Member Avatar for Subhasis giri
0
122
Member Avatar for whitech

I have to do my homework for passing the course :) The question is that; Firstly the starting point is (x1,y1) we get these values from user and we get a lot of two dimensional points from user.If a point is far away from the center point of the points, …

Member Avatar for whitech
0
331
Member Avatar for whitech

i have to find proper divisors of a positive integer.for instance,the proper divisor of 15 are 1,3,5. input 15 output 1 3 5 like that. Thank you for your helps.

Member Avatar for cse.avinash
0
202