TCS Company Programming Output

What is the output of the following program?
#include
int main(){
int c=08;
printf("%d",c);
return 0;
}

Read Solution (Total 3)

TCS Other Question

What will the statement
char ch='A';
store in variable ch?

a. The character A
b. Ascii value of character A
c. A along with inverted commas
d. None of the above
What is the output of the following program?
#include
void main()
{
printf("%d",sizeof(5.2));
}