TCS Company Programming Program

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

Read Solution (Total 18)

TCS Other Question

How many of the following are invalid
variable name?
NUMBER
first.name
midname. _num ā€‹ 93num
num93
last name ā€‹ nUMBER
4321
1. 5
2. 3
3. 2
4. More than 5
Output of following program?
#include
int main()
{
printf("%d", printf("%d", printf(ā€œ%dā€,543210)));
return 0;
}
1. 54321061
2. 543210
3. 5432101
4. 5432106