write an interactive program to generate the divisors of a
given integer.
Answer Posted / buya
111,111,111*111,111,111=12345678910987654321
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
Why is c called a structured programming language?
In c programming language, how many parameters can be passed to a function ?
Write a Program to find whether the given number or string is palindrome.
please explain every phase in the "SDLC" in the dotnet.
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(); }
What is static memory allocation? Explain
Disadvantages of C language.
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Difference between MAC vs. IP Addressing
Explain why C language is procedural?
Explain what are the advantages and disadvantages of a heap?
what value is returned to operating system after program execution?
What are inbuilt functions in c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Why do we use header files in c?