3 votes
3
The number of tokens in following program?# define M 100 int main ( ) { // declare variables int n = 2020; return n % M; }Your Answer:19Correct Answer: 16 Status: inco...
2 votes
4
How to store ASCII value of a characters in c?Example:main(){char CH='A';printf("%d",CH );return 0;}I want to store this o/p in a variable.
1 votes
5
I could not understand here both the outputs point to D3 bit . How to proceed in this scenario ?
1 votes
6
1 votes
7
please help how it could be 8 i am getting 1 ???Answer given is 8int main() { char *str=”Gate2017”; printf(“%d”, function( str )); return 0; } int function(char *...