Computer Science, asked by inaayakanni, 3 months ago

What is the output of the following program?

Private Sub Command1_Click()
Dim a As Integer
a = 6 + 3 * 5
Print a
End Sub

Answers

Answered by userg4470
2

Answer:

Find output of C programs Questions with Answers (Set - 2)

Question - 1. #include <stdio.h> int main() { int x; x = 10; if(x > 10) x -= 10; else if(x >= 0) x += 00; else if(x) x += 10; else x -= 10; printf("%d\n",x); return 0; } ...

Question - 4. #include <stdio.h> int main() { int a=10,b=20,*p,s=0; p = &a; a++; (*p)++; s = a + b + *p; printf("%d\n",s); return 0; } ...

Answered by jayasupra
0

Answer:

PLEASE mark me as a Brainliest

Similar questions