Explain the use of fflush() function?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to calculate sum of digits till it reduces to a single digit using recursion
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
hat is a pointer?
Is register a keyword in c?
What should be keep precautions while using the recursion method?
What is New modifiers?
What functions are used for dynamic memory allocation in c language?
develop algorithms to add polynomials (i) in one variable
What are the types of i/o functions?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
where are auto variables stored? What are the characteristics of an auto variable?
Is the following code legal? struct a { int x; struct a b; }