Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.
2090Write a program that an operator and two operands read from input operand operator on the implementation and results display.
1879A program to allow an input operand and operator from the operator and read on the display and output operand.
1961Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
XYZ,
2178what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
5 6822#include
#include
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
2 3288
What are the benefits of organizational structure?
Explain what is a program flowchart and explain how does it help in writing a program?
Write a program to print fibonacci series without using recursion?
What is wrong with this initialization?
What does the c preprocessor do?
What are two dimensional arrays alternatively called as?
What is extern keyword in c?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is clrscr ()?
Explain goto?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What is a structure in c language. how to initialise a structure in c?
Can include files be nested? How many levels deep can include files be nested?
#include
How main function is called in c?