How can you convert integers to binary or hexadecimal?


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

Post New Answer

More C Interview Questions

where are auto variables stored? What are the characteristics of an auto variable?

0 Answers  


main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }

1 Answers   Accenture, Vector,


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

2 Answers   Cap Gemini, HCL,


1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=

16 Answers   CybOrg, Siemens,


write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3

0 Answers   ADP,






Why is main function so important?

0 Answers  


What is %d used for?

0 Answers  


code for find determinent of amatrix

0 Answers  


In a header file whether functions are declared or defined?

0 Answers   TISL,


How to calculate sum

2 Answers  


What does %f mean c?

1 Answers  


Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }

3 Answers   IBM,


Categories