Answer Posted / shabeer v c
#include<stdio.h>
#include<conio.h>
void main()
{
printf(" \"hai");
printf(" \" ");
getch();
}
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Can static variables be declared in a header file?
Calculate 1*2*3*____*n using recursive function??
What does %p mean?
Is there any data type in c with variable size?
Difference between macros and inline functions? Can a function be forced as inline?
What is memcpy() function?
shorting algorithmS
How do we declare variables in c?
What are inbuilt functions in c?
Can one function call another?
What are keywords c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
can any one provide me the notes of data structure for ignou cs-62 paper
What is the equivalent code of the following statement in WHILE LOOP format?