How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
No Answer is Posted For this Question
Be the First to Post Answer
Is c is a high level language?
what is the difference between #include<stdio.h> and #include "stdio.h" ?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What are the string functions? List some string functions available in c.
Write a program to generate prime factors of a given integer?
The __________ attribute is used to announce variables based on definitions of columns in a table?
who did come first hen or agg
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5
main() { int a[10]; printf("%d",*a+1-*a+3); }
What standard functions are available to manipulate strings?
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
What is the purpose of 'register' keyword in c language?