which will return integer?
a) int*s ( )
b) ( int* ) s( )
c) int ( *s ) ( )
Answer / chandu
c) int (*s)()
s is pointer to a function which returns integer
| Is This Answer Correct ? | 10 Yes | 0 No |
i want to job in your company, so how it will be possible.
Write a program that can show the multiplication table.
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
what is the difference between #include<> and #include”…”?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What happens if you free a pointer twice?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
Write a program that his output 1 12 123
How can I determine whether a machines byte order is big-endian or little-endian?
yogesh patil in dell
C program to read the integer and calculate sum and average using single dimensional array
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.