+ 1
Though we aren't assigned any value for num and even we didn't get the user input,The output of this program came as -11932 How?
#include<stdio.h> int main() { int j, num; j=(num<0?0:num*num); printf("%d\n",j); return 0; } In Turbo C++
3 Réponses