Explain the concept and use of type void.
No Answer is Posted For this Question
Be the First to Post Answer
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
What is the difference between procedural and functional programming?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
What is the difference between near, far and huge pointers?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
which one is highest Priority in c? a)=,b)+,c)++,d)==
how to find that no is int or float?
Write the control statements in C language
how to print this pyramid * * * * * * * * * * * * *
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
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 do you mean by inline function in C?