This file contains 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv='Content-type' content='text/html;charset=UTF-8' > | |
<script> | |
function startRead() | |
{ | |
// obtain input element through DOM | |
This file contains 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
1. How to print the following in c language? | |
n=5 | |
o/p | |
0 | |
1 0 | |
2 1 0 | |
3 2 1 0 | |
4 3 2 1 0 | |
2. How to print the following in c language? |
This file contains 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
1. Problem Statement: | |
Tomorrowland is a futuristic cityscape somewhere in time and space. A teenage girl with scientific curiosity Casey Newton | |
and a former genius inventor Frank, set out for a dangerous mission to unearth the secrets of Tomorrowland.In the course of | |
their mission, they identified the decoded form of earth language in the sign boards and at all other places at Tomorrowland. | |
Frank examined the decoded text and interpreted its rules. | |
The decoded text contains only lower case alphabets.One alphabet in earth language is equal to the floored average of 2 | |
alphabets in Tomorrowland. | |
For eg: "acde" in Tomorrowland is "bd" in earth | |
Write a C program to help Frank and Casey that inputs a string which refers to the decoded word in Tomorrowland |
This file contains 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
// C program for Red-Black Tree insertion | |
#include<stdio.h> | |
#include<stdlib.h> | |
//A Red-Black tree node structure | |
struct node | |
{ | |
int data; | |
char color; |
This file contains 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
C:\WINDOWS\system32>python C:\Users\harsha\Anaconda3\etc\keras\load_config.py 1>temp.txt | |
The process cannot access the file because it is being used by another process. | |
C:\WINDOWS\system32>set /p KERAS_BACKEND= 0<temp.txt | |
C:\WINDOWS\system32>del temp.txt | |
C:\WINDOWS\system32\temp.txt | |
The process cannot access the file because it is being used by another process. | |
C:\WINDOWS\system32>python -c "import keras" 1>nul 2>&1 |