307 views
0 votes
0 votes

Can someone explain how %x works below and how we can write an operation in ths statement.

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
ranarajesh495 asked Oct 13, 2018
279 views
what is the difference between printf(“\nI am don”) and printf(“%s”, I am don);
0 votes
0 votes
1 answer
2
Vaishnavi01 asked Sep 3, 2018
564 views
0 votes
0 votes
2 answers
3
anonymous asked May 14, 2018
520 views
What changes must be done for printing value 5. #include <stdio.h int main() { int var; /*Suppose address of var is 2000 */ void *ptr = &var; *ptr = 5; printf("var=%d and...
0 votes
0 votes
1 answer
4
anonymous asked May 14, 2018
590 views
Please explain solution in brief . #include <stdio.h void f(char ); int main() { char *argv[] = { "ab", "cd", "ef", "gh", "ij", "kl" }; f(argv); return 0; } void f(char ...