Answer Posted / siva
we can use more than one variable
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Which driver is a pure java driver
What should malloc(0) do?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Explain high-order bytes.
Explain the difference between null pointer and void pointer.
Differentiate between null and void pointers.
What is a union?
Explain the Difference between the New and Malloc keyword.
What's the difference between constant char *p and char * constant p?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What is an arrays?
Sir i need notes for structure,functions,pointers in c language can you help me please
What is malloc return c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Is Exception handling possible in c language?