write a c program in such a way that if we enter the today
date the output should be next day's date.
No Answer is Posted For this Question
Be the First to Post Answer
What are volatile variables in c?
Do you have any idea how to compare array with pointer in c?
what is c++ programming?
What are enums in c?
Blade 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 Answers BladeLogic, Infosys,
What are the 4 types of functions?
why u join this call center?
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?
Why header file is used in c?
A program to allow an input operand and operator from the operator and read on the display and output operand.
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}