Sorry! Posting Assignment is allowed only for commercial accounts.
#include<stdio.h>int main(){ int k, num = 50; k = (num < 10) ? 100 : 200; printf("%d\n", num); return 0;}