Famous puzzles which are generally asked by companies during
interviews ?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
WHAT IS LOW LEVEL LANGUAGE?
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Discuss the function of conditional operator, size of operator and comma operator with examples.
do you think its fraud or original company?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
What is null pointer in c?
Explain output of printf("Hello World"-'A'+'B'); ?
Explain how can I read and write comma-delimited text?