Write a program that can show the multiplication table.
No Answer is Posted For this Question
Be the First to Post Answer
what is event driven software and what is procedural driven software?
What is pointer and structure in c?
What is the advantage of an array over individual variables?
Give basis knowledge of web designing ...
What are variables c?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Ow can I insert or delete a line (or record) in the middle of a file?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
Explain the term printf() and scanf() used in c language?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Which is better oop or procedural?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?