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.
1712Write a program that an operator and two operands read from input operand operator on the implementation and results display.
1522A program to allow an input operand and operator from the operator and read on the display and output operand.
1583Function 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,
1727what 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 5756#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 2509
show how link list can be used to repersent the following polynomial i) 5x+2
Explain why c is faster than c++?
How do we open a binary file in Read/Write mode in C?
What is static identifier?
What are structural members?
How can I open a file so that other programs can update it at the same time?
Is c call by value?
Is a house a shell structure?
Can the size of an array be declared at runtime?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
What is the purpose of sprintf() function?
How do you write a program which produces its own source code as output?
What is C language ?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What is nested structure in c?