What is the use of getchar functions?
No Answer is Posted For this Question
Be the First to Post Answer
write a proram to reverse the string using switch case?
Explain enumerated types in c language?
When the macros gets expanded?
wap in c to accept n number display the highest and lowest value
Can you explain the four storage classes in C?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
what is the difference between malloc() and calloc() function?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
advantages of pointers?
What is the difference between scanf and fscanf?
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
Explain how do you override a defined macro?