What are runtime error?
No Answer is Posted For this Question
Be the First to Post Answer
Hi Every one...........I have been selected for the SBI Clerk. But i m one month Pregnanat. So anyone please suggest me, is they take any objection on my joining .
4 Answers State Bank Of India SBI,
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
I have a varargs function which accepts a float parameter?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
what is an inline function?
In which area global, external variables are stored?
How reliable are floating-point comparisons?
LOGIC OF Bodmas?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.