Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.
No Answer is Posted For this Question
Be the First to Post Answer
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
What is a ternary operator in c?
How can you determine the maximum value that a numeric variable can hold?
What is main () in c?
What are dynamically linked and statically linked libraries?
Write a program in c using only loops to print * * * * * *******
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
Explain what is wrong with this statement? Myname = ?robin?;
What are pointers? What are stacks and queues?
How do you print only part of a string?
What are valid signatures for the Main function?