TCS Company Programming Database

Output of following program?
#include
int main()
{
printf("%d", printf("%d", printf(ā€œ%dā€,543210)));
return 0;
}
1. 54321061
2. 543210
3. 5432101
4. 5432106

Read Solution (Total 13)

TCS Other Question

Output of following program?
#include
int main()
{
printf("%d", printf("%d", 1234));
return 0;
}
1. 12344
2. 12341
3. 11234
4. 41234
What are the 4 basics of OOP?