Accéder au contenu principal

Articles

Affichage des articles du mai, 2017

autohotkey stop and restart a loop

looping := false ^a:: looping := true while(looping = true) { MsgBox, loop working... Sleep 2000 } return ^s:: looping := false return Disable adBlocker and refresh the page to use this content قم بتعطيل الاد بلوكر ليتسنى لك استعمال هاذا المحتوى

empty blogspot templates

<style> #pageageContents { position:fixed; top:0px; left:0px; width:100%; height:100%; z-index:99; background-color:white; } </style> <div id='pageageContents'> <p>that's just an example of empty page</p> </div> Disable adBlocker and refresh the page to use this content قم بتعطيل الاد بلوكر ليتسنى لك استعمال هاذا المحتوى

array|matrix of strings example

array|matrix of strings Disable adBlocker and refresh the page to use this content copy and paste that example #include<stdio.h> typedef struct s { char r[100]; }strng; main() { int i,n; strng t[100]; printf("enter the number of strings : "); scanf("%d",&n); for(i=0 ; i<n; i++) { printf("the string number %d : ",i); scanf("%s",t[i].r); } for(i=0 ; i<n; i++) { printf("the string number %d is %s \n",i,t[i].r); } }