代码搜索:Programs

找到约 10,000 项符合「Programs」的源代码

代码结果 10,000
www.eeworm.com/read/210671/15193683

cpp fig21_09.cpp

// Fig. 21.9: fig21_09.cpp // Demonstrating operator keywords. #include using std::cout; using std::endl; using std::boolalpha; #include int main() { int a = 8,
www.eeworm.com/read/210671/15193689

cpp fig16_22.cpp

// Fig. 16.22: fig16_22.cpp // Using atoi #include using std::cout; using std::endl; #include int main() { int i = atoi( "2593" ); cout
www.eeworm.com/read/210671/15193692

cpp fig16_30.cpp

// Fig. 16.30: fig16_30.cpp // Using strpbrk #include using std::cout; using std::endl; #include int main() { const char *string1 = "This is a test"; const ch
www.eeworm.com/read/210671/15193699

cpp fig16_41.cpp

// Fig. 16.41: fig16_41.cpp // Using strerror #include using std::cout; using std::endl; #include int main() { cout
www.eeworm.com/read/210671/15193701

cpp fig16_24.cpp

// Fig. 16.24: fig16_24.cpp // Using strtod #include using std::cout; using std::endl; #include int main() { double d; const char *string = "51.2% are admitte
www.eeworm.com/read/210671/15193702

cpp fig16_21.cpp

// Fig. 16.21: fig16_21.cpp // Using atof #include using std::cout; using std::endl; #include int main() { double d = atof( "99.0" ); cout
www.eeworm.com/read/210671/15193706

cpp fig16_35.cpp

// Fig. 16.35: fig16_35.cpp // Using memcpy #include using std::cout; using std::endl; #include int main() { char s1[ 17 ], s2[] = "Copy this string"; memcp
www.eeworm.com/read/210671/15193707

cpp fig16_23.cpp

// Fig. 16.23: fig16_23.cpp // Using atol #include using std::cout; using std::endl; #include int main() { long x = atol( "1000000" ); cout
www.eeworm.com/read/210671/15193711

cpp fig16_25.cpp

// Fig. 16.25: fig16_25.cpp // Using strtol #include using std::cout; using std::endl; #include int main() { long x; const char *string = "-1234567abc"; c
www.eeworm.com/read/210671/15193712

cpp fig16_26.cpp

// Fig. 16.26: fig16_26.cpp // Using strtoul #include using std::cout; using std::endl; #include int main() { unsigned long x; const char *string = "1234567ab