You are here

Page not found

Search results

  1. C program to print a string

    C program to print a string using various functions such as printf, puts. Consider the following code: printf ( "Hi there! How are you doing?" ) ; ...     char z [ 100 ] = "I am learning C programming language." ;     printf ( "%s" , z ) ; ...

    Yogesh Suneja - 14/10/2020 - 21:18

  2. Open Source computer software programs

    You can contribute to open source by using open source softwares. Some of the most useful computer software that you should ... the web with this awesome web browser. It's not only open source but also a product of Non Profit Organization (Mozilla Corporation). ...

    Yogesh Suneja - 03/10/2020 - 16:43

  3. Submit your source code or program

    Here, you can submit your C, C++, or Java source code/program. We will check it, and if we find it useful, we will add it to our ...

    Yogesh Suneja - 22/11/2019 - 19:38

  4. source code for package

    Program access the package import static pack.Range.*; public class range1 { public static void main(String[] args) { for(int z:range(9)) //0...8 { ... and goes until one less than the second . Download the code from hear: Attachment Size ...

    Yogesh Suneja - 16/04/2011 - 18:02

  5. Programmer resources

    ... useful resources which we recommend to everyone. Open Source : All you need to know about Open Source. Computer Science Books ... = window.adsbygoogle || []).push({}); C++ Resources C++ creator : Homepage of Sir Bjarne Stroustrup who ...

    Yogesh Suneja - 30/09/2020 - 00:21

  6. Remove vowels from a string in C

    C program to remove or delete vowels from a string. If the input is "C programming," then the output is "C prgrmmng." In the program, we create ... Output of program: C programming code using pointers #include<stdio.h> #include<stdlib.h> ...

    Yogesh Suneja - 11/10/2020 - 23:29

  7. String concatenation in C

    C program to concatenate two strings; for example, if the two input strings are ... its length before concatenation. But, it'll increase the code size. Make a copy of the first string before concatenation. This ... 100 ] ;         printf ( "Enter source string \n " ) ;     gets ( original ) ;   ...

    Yogesh Suneja - 04/10/2020 - 11:26

  8. C program to change case of a string

    ... || []).push({}); Function strlwr in C #include <stdio.h> #include <string.h> int main ( ...   return   0 ; } Function strupr in C #include <stdio.h> #include <string.h> int main ( ...

    Yogesh Suneja - 01/12/2019 - 08:56

  9. Java program to find the largest of three numbers

    ... || []).push({}); Java programming source code import java.util.Scanner ; class Largest { ...

    Yogesh Suneja - 05/12/2019 - 00:04

  10. C substring, substring in C

    C substring program to find substring of a string and its all substrings . A ... = window.adsbygoogle || []).push({}); C substring program #include <stdio.h>   int main ( ) ... we do not need to return the substring array. See another code below in which we return a pointer to substring, which we create in our ...

    Yogesh Suneja - 02/10/2020 - 16:44

Pages