सीधे मुख्य सामग्री पर जाएं

Vijay Mahar Logo PNG

Hello friendsHow are You
Hope you all are fine
You are here for download
The logo of Vijay Mahar


Hold the image
Click on Download button
Go to Vijay Mahar Instagram
Vijay MaharFacebook

टिप्पणियाँ

इस ब्लॉग से लोकप्रिय पोस्ट

Dofollow Instant Approval Blog Commenting Sites list – 2019

Dofollow Instant Approval Blog Commenting Sites list – 2019 Technology ABCD Hello friend aap lo kaise hai mai ummid karta hu ki aap log bahut hi achche honge aaj ke is post me mai aap sabhi DoFollow BackLinks ke bare me batate wala hu ki aap log apne blog website ke liye or apne blog ke post ke liye kis trah se comment kar ke Dofollow backlinks banayenge agar aap log janna chahte hai to aap is post me bane rahe to chaliye suru karte hai. Backlinks का प्रकार? Nofollow बैकलिंक Dofollow BackLink NoFollow BackLink  – जब कोई website किसी दूसरी website को link करती है पर उस link के पास nofollow tag होता है, तो link juice pass नहीं करता। Page की ranking के लिए Nofollow links useful नहीं हैं क्योंकि वह कुछ भी contribute नहीं करते। आम तोर पर, एक webmaster nofollow tag तब use करता है, जब वह किसी unreliable site से link out करता है। Example: दुसरे blogs पर comments से links। दोस्तों जिस तरीके से मैंने आपको बताया की  Dofollow Backlinks  से link juice आपके ब्लॉग में flow होता है लेकि

C program to print hollow square or rectangle star pattern

C program to print hollow square or rectangle star pattern Example Input Enter number of rows: 5 Output ***** * * * * * * ***** /** * C program to print hollow square star pattern */ # include int main ( ) { int i , j , N ; /* Input number of rows from user */ printf ( "Enter number of rows: " ) ; scanf ( "%d" , & N ) ; /* Iterate over each row */ for ( i = 1 ; i <= N ; i ++ ) { /* Iterate over each column */ for ( j = 1 ; j <= N ; j ++ ) { if ( i == 1 || i == N || j == 1 || j == N ) { /* Print star for 1st, Nth row and column */ printf ( "*" ) ; } else { printf ( " " ) ; } } /* Move to the next line/row */ printf ( "\n" ) ; } return 0 ; }