This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int main(void){ | |
| int temp; | |
| for(;scanf("%d",&temp);printf("%d",temp)){ ; } | |
| getch(); | |
| return 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int main(void){ | |
| char ch; | |
| for(ch = 0 ; ch <= 255 ; ch++){ | |
| printf("%d",ch); | |
| } | |
| getch(); | |
| return 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int main(void){ | |
| int a=1; | |
| printf( "%d %d %d",a,++a,a++); | |
| getch(); | |
| return 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int main(void){ | |
| int a = 0; | |
| if(a) | |
| cout<<”Hello”, | |
| cout<<” World”, | |
| Else | |
| cout<<”Hello”, | |
| cout<<”Vishal”, | |
| a++; | |
| getch(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Void main(){ | |
| char ch[10] = "Vishal"; | |
| printf("%s",ch,"c""question" "bank"); | |
| printf("\n"); | |
| printf("%s","c""question" "bank",ch); | |
| getch(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int main(void){ | |
| if(printf("Hello")==NULL){ | |
| printf("Hello"); | |
| }else{ | |
| printf("World"); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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> |
OlderNewer