Company: Applogic networks_Software engineer intern_Oncampus_21july
Difficulty: easy
The code which prints the integer values from 1 to 10 in the following format is: 1 2 3 4 5 6 7 8 9 10 int count = 1; while (count < 10) { printf("%d\n", count); count = count + 1; } int count = 1; while (count <= 10) { printf("%d", &count); count = count + 1; } int count = 1; while (count <= 10) { printf("%d ", count); count = count + 1; } int count = 1; while (count <= 10) { printf("%d\n", count); count = count + 1; } Output Format Print the letter (A, B, C or D) of the code snippet that produces exactly the given output.