MY ALL ACCOUNTS CHECK OUT Get link Facebook X Pinterest Email Other Apps By lakahman malviya lakshmankablog May 11, 2022 MY YOUTUBE CHANNEL LAKSHMANKABLOG LINK 🔗 👇https://youtube.com/channel/UCD1Uxll89kFIX365Iv9CB0QMY SECOND YOUTUBE CHANNEL LAKSHMANSE 🔗 👇https://youtube.com/channel/UCCP8oGEklRM8nAp0GGMoivgLAKSHMANKABLOG (BLOG) LINK 🔗👇lakshmanka.blogspot.comLakshmanofficial93 on Instagram :https://www.instagram.com/p/Cdaquc2Bwyu/?igshid=YmMyMTA2M2Y=Facebook ID 🔗 👇https://m.facebook.com/dinesh.solankhi.52WhatsApp Only for Coders https://chat.whatsapp.com/L5fayeSJCr10d95aLV945bWorking projects of web app 😄https://lakshmabfirst.lakshmanmalviya.repl.co/ Get link Facebook X Pinterest Email Other Apps Comments
PRITING THE T ALPHABET IN C LANGUAGE By lakahman malviya lakshmankablog October 13, 2021 #include <stdio.h> #include<conio.h> using namespace std; // printing the T symbol; int main(){ int i,j,l=9; for( i=1; i<=l; i++){ for(j=1; j<=l; j++){ if( j==5||i==1 ) printf("*"); else printf(" "); } printf("\n"); }return 0; } Read more
ARRAY USING FOR LOOP By lakahman malviya lakshmankablog October 04, 2021 #include <iostream> using namespace std; { int marks[]= {1,3,4,5}; int mathmarks[4]; // mathmarks[0]=478957345; // mathmarks[1]= 789; // mathmarks[2]=785; // mathmarks[3]=787; for(int i = 0; i<4; i++){ cout<<marks[i]<<endl; } // for(int i = 0; i<4; i++){ // cout<<mathmarks[i]<<endl; // } return 0; } Read more
Comments
Post a Comment