Why isn't any of this standardized in c? Any real program has to do some of these things.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What language is c written?

0 Answers  


main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720

1 Answers   HCL,


What is the meaning of 2d in c?

0 Answers  


What are the advantages of Macro over function?

1 Answers  






What are the types of macro formats?

0 Answers  


What is the difference between File pointer and Internal Charecter Pointer?

2 Answers   TATA,


Write a program to print prime nums from 1-20 using c programing?

13 Answers   IBM,


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

0 Answers   TCS,


What do you mean by recursion in c?

0 Answers  


implement NAND gate logic in C code without using any bitwise operatior.

4 Answers   Alcatel,


write a program to find the largest and second largest integer from an array

2 Answers   Value Labs,


Categories