How does placing some code lines between the comment symbol help in debugging the code?
No Answer is Posted For this Question
Be the First to Post Answer
how to convert an char array to decimal array
What are the functions to open and close the file in c language?
What is the scope of local variable in c?
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
What is the difference between far and near in c?
What is #include stdio h and #include conio h?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
Explain what are binary trees?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
Give differences between - new and malloc() , delete and free() ?