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
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
Explain how do you determine a file’s attributes?
What do you mean by a sequential access file?
How to print "Hi World" without using semi colon?
What is typedef example?
Can the sizeof operator be used to tell the size of an array passed to a function?
how to get the starting address of file stored in harddisk through 'C'program.
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
Why do we use pointer to pointer in c?
why wipro wase