⟩ What is the maximum no. of arguments that can be given in a command line in C?
for a program
int main(int argc, char **argv) ....
^^^^
sizeof(int) number of arguments are possible
hence 32767 args are possible for a 32 bit computer
for a program
int main(int argc, char **argv) ....
^^^^
sizeof(int) number of arguments are possible
hence 32767 args are possible for a 32 bit computer
Sometime after 10.00pm a murder took place. A witness claimed that the clock must have stopped at the time of the shooting. It was later found the position of both the hands were the same but their positions had interchanged. Tell the time of the shootinga)11.54b)11.54c)12.35d)10.50
If A= 0 0 0 0 1 1 1 1B= 0 0 1 1 0 0 1 1C= 0 1 0 1 0 1 0 1Then find the value of [A U C] U B and express it in decimal?
There are two candles of equal lengths and of different thickness. The thicker one lasts of six hours. The thinner 2 hours less than the thicker one. Ramesh lights the two candles at the same time. When he went to bed he saw the thicker one is twice the length of the thinner one. How long ago did Ramesh light the two candles?
One fast typist type some matter in 2hr and another slow typist type the same matter in 3hr. If both do combine in how much time they will finish?
The size of a program is N.And the memory occupied by the program is given by M=square root of 100N.If the size of the program is increased by 1% then how much memory now occupied?
A telephone cable is to be run from a junction point on the bank of a river 900 meters wide to an office that is located 3000 meters downstream on the opposite bank. If the cost of laying cable under water is Rs. 5 per meter and that of laying overhead on land is Rs. 4 per meter, find the point downstream where the cable is to cut across the river.(a) 450(b) 1800(c) 2800(d) 2100(e) 2700
What is the number of zeros at the end of the product of the numbers from 1 to 100?
Jalia is twice older than qurban. If jalia was 4 years younger, Qurban was 3 years older their difference between their ages is 12 years. What is the sum of their ages?a) 67b) 57c) 36d) none
A man ate 100 bananas in five days, each day eating 6 more than the previous day. How many bananas did he eat on the first day?
What is the o/p of the following C-program?Main(){Char str[7]="strings";Printf("%s",str);}