Sorry! Posting Assignment is allowed only for commercial accounts.
int main() {int sum = 2 + 4 / 2 + 6 * 2;printf("%d", sum);return 0;}
What will be the output of the following code? int main() { structure cl { int items; char name[30]; }a; strcpy(a.name, "psg"); a.items=30; printf("%s", a.name); return 0; }
x = 1 while True: if x % 5 = = 0: break print(x) x + = 1
import array a = [4, 6, 8, 3, 1, 7] print(a[-3]) print(a[-5]) print(a[-1])