TCS Company Programming Basics

What are the 4 basics of OOP?

Read Solution (Total 11)

TCS Other Question

Output of following program?
#include
int main()
{
printf("%d", printf("%d", printf(ā€œ%dā€,543210)));
return 0;
}
1. 54321061
2. 543210
3. 5432101
4. 5432106
Tell how to check whether a linked list is circular.