C program to read the integer and calculate sum and average using single
dimensional array
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is dynamic data structure?
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,
How reliable are floating-point comparisons?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
How to write a program for swapping two strings without using 3rd variable and without using string functions.
What is the maximum no. of arguments that can be given in a command line in C.?
Does c have class?
How can I get random integers in a certain range?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
How the c program is executed?
Explain how can I read and write comma-delimited text?