WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 28458WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
4 14638Blade logic interview question. 1st round is a written tests with 15 multiple questions from c and c++. All are simple basic question. Like int main () { Int i=65; Return printf(ā%cā, i); } 2nd and 3rd round is technical interview. The position for which I was interview was core UNIX and c. Yes it is for system programming. The company has product name blade server. For their server they are creating their own command for their purpose. Example cd command. We can implement it in a c program by using the chdir() function. So the question asks related to PID, fork, pipe, shared memory, signal. Write a program in c which will act as cp command.
1 10996write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 13419hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
2205
What is time complexity c?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(ā-ā); Return 0;
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Where register variables are stored in c?
What is the size of a union variable?
What are the standard predefined macros?
What is the right type to use for boolean values in c?
why do some people write if(0 == x) instead of if(x == 0)?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Differentiate between calloc and malloc.
Function calling procedures? and their differences? Why should one go for Call by Reference?
How to get string length of given string in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is build process in c?
Explain the concept and use of type void.