Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
What will be the output of the following C Program?
#include
int main()
{
int test = 5;
printf("Number = %d", test);
return 0;
}
1
Number = 0
2
Number = 1
3
Error
4
Number = 5