how to count no of words,characters,lines in a paragraph.
No Answer is Posted For this Question
Be the First to Post Answer
How do I round numbers?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
how can we print hellow world programme without using semicolon
Explain the array representation of a binary tree in C.
Explain how are portions of a program disabled in demo versions?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
Explain the properties of union.
What is the use of a ‘