What is difference between %d and %i in c?
No Answer is Posted For this Question
Be the First to Post Answer
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
What does sizeof function do?
Explain 'bus error'?
What are the 3 types of structures?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
write a function for strtok()??
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
Output for following program using for loop only * * * * * * * * * * * * * * *
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
What are header files in c programming?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?