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
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
What is function pointer c?
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
What is the size of a union variable?
what is a far pointer
12 Answers ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Can you please explain the difference between malloc() and calloc() function?
related to rdbms query .
What is the difference between text and binary modes?
YBJBU6
Write a C program to fill a rectangle using window scrolling