How can I find out how much memory is available?
[root@server ~]# free
[root@server ~]# free -m
| Is This Answer Correct ? | 8 Yes | 6 No |
How can I read and write comma-delimited text?
1. main() { printf("%d",printf("HelloSoft")); } Output?
Program to find larger of the two numbers without using if-else,while,for,switch
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
What are the 5 organizational structures?
What is define c?
write a addition of two no. program with out using printf,scanf,puts .
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What is main function in c?
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
write a program in c to print **** * * * * ****
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.