what is the c source code for the below output?
10 10 10 10 10 10 10 10 10 10
9
9
7 6 6 6 6 6 6 9
7 5 9
7 3 2 2 5 9
7 3 1 5 9
7 3 5 9
7 4 4 4 4 5 9
7 8 8 8 8 8 8 8 8 9
No Answer is Posted For this Question
Be the First to Post Answer
What is void main ()?
how to add two numbers without using arithmetic operators?
What are the applications of c language?
Without Computer networks, Computers will be half the use. Comment.
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Explain what is wrong with this statement? Myname = ?robin?;
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
What is the method to save data in stack data structure type?
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
how to execute with out main in cprogram
What is the use of header?