Write the program that calculates and prints the average of
several integers. Assume that the last value read is
sentinel 9999.
No Answer is Posted For this Question
Be the First to Post Answer
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
What does %f mean c?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Describe the steps to insert data into a singly linked list.
difference between string and array?
how do you execute a c program in unix.
Differentiate between null and void pointers.
What is optimization in c?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }