A woman had somany gloves and hats 22 red,34 blue, 45
white...there was power cut and she took a glove and how
many gloves shud she take so that she gets a pair of glove
fr each color??
Answers were Sorted based on User's Feedback
Answer / jatin
compute some of gloves
22+34+45=101
out of this 22 34 and 44 for the eachh coller she get pair of gloves
| Is This Answer Correct ? | 3 Yes | 24 No |
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
What is the right type to use for boolean values in c?
Explain b+ tree?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What does %p mean?
write a program to count the no of repaeted words in a line?
Explain how do you generate random numbers in c?
Sir i need notes for structure,functions,pointers in c language can you help me please
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }