-
Which one of the following represents a correct and safe declaration of NULL ?
a) typedef((void *)0) NULL; b) typedef NULL(char *)0; c) #define NULL((void *)0) d) #define NULL((char*)0)
-
-
-
-
What function will read a specified number of elements from a file ?
A) fread() b) readfile() c) fileread() d) gets()
-
-
-
-
-
Process id of kernel
(a) 1 (b) 0 (c) 2 (d) none
-
C Program
What is the output of the following code - What is the output of the following code int i=7;printf("%d", i++ * i++);
-
With every use of memory allocation function should be used to release allocated memory which is no longer needed ?
A) dropmem() b) dealloc() c) release() d) free()
-
WIPRO Technical Interview
main()
{
int a[]={0 1 2 3};
int *b;
b=&a[2];
printf("%d",b[-1]);
}
TECHNICAL INTERVIEW -
-
-
Languages Interview Questions
Sub Category
Questions
Answers
Last Updated
Ans