What is putchar() function?


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

Post New Answer

More C Interview Questions

main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?

5 Answers   TCS,


Is there a built-in function in C that can be used for sorting data?

0 Answers  


Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.

2 Answers  


What does a function declared as pascal do differently?

0 Answers  


what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }

1 Answers  






What is indirect recursion? give an example?

4 Answers  


Explain how can I right-justify a string?

0 Answers  


What are the Advantages of using macro

0 Answers  


How to write a multi-statement macro?

0 Answers  


What is a void pointer? When is a void pointer used?

0 Answers   Aspire, Infogain,


#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }

7 Answers   HCL,


Do pointers need to be initialized?

0 Answers  


Categories