Posts

Showing posts with the label C Programming

Best Job Oriented Computer Courses

Image
करें तैयारी सरकारी नौकरियों में अनिवार्य कम्प्यूटर कोर्स O Level , CCC की Admission चल रहा है... इं0 कमलेश त्रिपाठी के निर्देशन में Join करें  बेहतरीन 🚀 🚀 रोजगारपरक Computer Courses KAiSH Computer Institute   में और  दीजिये अपने कैरियर को  Computer ज्ञान 👩‍💻के साथ नया  आयाम 𝗢𝗳𝗳𝗲𝗿𝗲𝗱 𝗖𝗼𝘂𝗿𝘀𝗲𝘀: ✅ NIELIT CCC - 𝗖𝗼𝘂𝗿𝘀𝗲 𝗢𝗻 𝗖𝗼𝗺𝗽𝘂𝘁𝗲𝗿 𝗖𝗼𝗻𝗰𝗲𝗽𝘁𝘀 ✅ NIELIT 𝗢 𝗟𝗲𝘃𝗲𝗹 - A Foundation Level Diploma ✅ ADCA - Advance Diploma in Computer Application  ✅ DCA - Diploma in Computer Application ✅ MSOffice Word Excel PowerPoint ✅ Website Designing  देर किस बात की.. आज ही सम्पर्क करें और बढ़ाएं अपने उज्ज्वल भविष्य ✴️ की तरफ एक कदम..🚶 Call @ 7348033936 #digitalindia #skillsdevelopment #skillindia #SkillsForSuccess #jobopportunity #jobskills #lucknow #no1computerinstitute #bestcomputerinstitute #UttarPradesh #lucknowjobs

Write A Program To Print Table Of Given Number in C Programming Language? Usefull Question For O Level, A Level, B Level, C Level, BCA. B.Tech. (CS/IT)

Program To Print Table Of Given Number in C Programming Language #include<stdio.h> #include<conio.h> void main() { int n,i; clrscr();  /* To Clear the Previous Output on Screen */ printf("enter the number");      scanf("%d",&n);                                                      for(i=1;i<=10;i++)                         {     printf("%d*%d=%d \n", n, i,n*i);                                      } getch();  /* To Hold the Output Screen */ } Output : If the n=5 then... 5*1=5 5*2=10 . . . . . 5*10=50