515 views

Please log in or register to answer this question.

Position:
Show:

Related questions

0 0 votes
0 0 answers
279
279 views
Chaitanya Reddy asked Apr 9, 2018
279 views
Best institutes for (cryptography/network security/information Security) in India?In case if you are working in those areas and you feel that you are doing good work, pl...
8 8 votes
1 1 answer
220
220 views
GO Classes asked Jun 20
220 views
What is the output of the following code?#include <stdio.h int main() { int a[] = {5, 10, 15}; int *p = a; printf("%d ", (*p)++); printf("%d ", *p++); printf("%d ", ++*p)...
5 5 votes
1 1 answer
188
188 views
GO Classes asked Jun 19
188 views
What is the output of the following code?#include <stdio.h int main() { int a[] = {2, 4, 6, 8}; int *p = a; p = p + 2; printf("%d %d", *p, p[-1]); return 0; }$\texttt{6 4...