Skip to content

Instantly share code, notes, and snippets.

int main(void){
int temp;
for(;scanf("%d",&temp);printf("%d",temp)){ ; }
getch();
return 0;
}
int main(void){
char ch;
for(ch = 0 ; ch <= 255 ; ch++){
printf("%d",ch);
}
getch();
return 0;
}
int main(void){
int a=1;
printf( "%d %d %d",a,++a,a++);
getch();
return 0;
}
int main(void){
int a = 0;
if(a)
cout<<”Hello”,
cout<<” World”,
Else
cout<<”Hello”,
cout<<”Vishal”,
a++;
getch();
Void main(){
char ch[10] = "Vishal";
printf("%s",ch,"c""question" "bank");
printf("\n");
printf("%s","c""question" "bank",ch);
getch();
}
int main(void){
if(printf("Hello")==NULL){
printf("Hello");
}else{
printf("World");
}
<?php
// Custom WP Login Page
function il_logo() { ?>
<style type="text/css">
.login h1 a {
background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/logo.png);
width: 270px;
background-size: contain;
}
</style>
// Update the following code wp-login.php
// WP's Code
<h1><a href="<?php echo esc_url( $login_header_url ); ?>" title="<?php echo esc_attr( $login_header_title ); ?>" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1>
// Your Code
<h1><a href="http://innovatelogics.com" title="Innovate Logics" tabindex="-1">Innovate Logics</a></h1>
<div class="subscribe" style="margin-top: 25px">
<input type="checkbox" id="joinList" checked="true" /> <label for="joinList">Join our Mailing List</label>
</div>
<!-- Add the code above the submit button -->
<p class="Submit">
<input type="submit" class="btn alt" value="%%GLOBAL_CreateAccountButtonText%%" />&nbsp;&nbsp;&nbsp;<a href="%%GLOBAL_ShopPath%%/">Return to store</a>
</p>