2. What is the output of the following code?
#include <stdio.h> int main(int argc, char *argv[]){ int a; for(a=10;a>=0;a--){ printf("%d ",a); } return 0; }