TCS Company Programming Program

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

Read Solution (Total 7)

TCS Other Question

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