Answer Posted / surya
i search job for my career . syntel is one of the good
company for my job career.
| Is This Answer Correct ? | 10 Yes | 18 No |
Post New Answer View All Answers
What is spark map function?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Apart from dennis ritchie who the other person who contributed in design of c language.
What is equivalent to ++i+++j?
Explain enumerated types in c language?
what value is returned to operating system after program execution?
What is header file in c?
what are bit fields? What is the use of bit fields in a structure declaration?
Implement bit Array in C.
What are the functions to open and close file in c language?
What is the best way to comment out a section of code that contains comments?
What is clrscr ()?
Explain the difference between malloc() and calloc() function?
Explain logical errors? Compare with syntax errors.
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer