Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #31.8K
~1K People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for coollife

i assume your task is to find whether an instance of IE is open or not. In that case you can loop thro the current processes that is running in your system and look for process named "iexplore.exe". This is the exe that says your system is running an IE …

Member Avatar for marco93
0
129
Member Avatar for kaizen_duck
Member Avatar for saphar
0
100
Member Avatar for Mazaoa

Try sound(frequency) and nosound function. Examples are given in turboc help. plz check

Member Avatar for yellowSnow
-6
73
Member Avatar for jc101341

Let me give the steps to follow assuming that the random function that you have written gives some random number for each call. You need to call this 3 time for one roll. (Use a loop here) It is given in the PDF that each player is given 3 chances …

Member Avatar for saphar
-1
84
Member Avatar for nathenvan

In case if you have not got the solution.. plese use this. [CODE] #define max 5 #include<stdio.h> void main() { int i,j; for(i=0;i<max;i++) { for(j=0;j<i;j++) { printf("%c",'*'); } printf("\n"); } for(i=max;i>0;i--) { for(j=i;j>0;j--) { printf("%c",'*'); } printf("\n"); } } [/CODE] Thanks, Saphar

Member Avatar for saphar
-1
89
Member Avatar for macdonald12

Here you go.. I have not done that much testing.. plz go thro.. also dont forget to delete the memory allocated.. i leave it to you.. [CODE] #include <stdio.h> #include <stdlib.h> int *readNumbers() { int *numbers; numbers=(int*)malloc(sizeof(int)); scanf("%d",numbers); return numbers; } void getFrequency(int numbers[], int freq[11]) { int loopnumber=freq[10]; for …

Member Avatar for macdonald12
-1
762

The End.