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.
2096Write a program that an operator and two operands read from input operand operator on the implementation and results display.
1894A program to allow an input operand and operator from the operator and read on the display and output operand.
1976Function 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,
2187what 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 6864#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 3304
main() { printf("hello"); fork(); }
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Which is better pointer or array?
Explain what is #line used for?
Why is it that not all header files are declared in every C program?
What is scope and lifetime of a variable in c?
What are the advantage of c language?
When should the volatile modifier be used?
Write a program to reverse a linked list in c.
write a program to print data of 5 five students with structures?
hi send me sample aptitude papers of cts?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is the best way of making my program efficient?
How can you return multiple values from a function?
Difference between malloc() and calloc() function?