Search:

Type: Posts; User: selva

Search: Search took 0.00 seconds.

  1. Thread: reading integers

    by selva
    Replies
    6
    Views
    1,912

    We can read input from scanf function. scanf...

    We can read input from scanf function.
    scanf function return the number of input items successfully assigned.


    #include<stdio.h>
    main()
    {
    int x1,x2,result;
    printf("Enter two integers");...
  2. Thread: Need Help in C!!

    by selva
    Replies
    3
    Views
    1,176

    #define KEY 2 char str[]="human"; //make a...

    #define KEY 2

    char str[]="human";
    //make a loop for no of iteration=no of character in the given string,and increment each char with encryption key.
    store the result in new string.This is your...
  3. Replies
    20
    Views
    9,229

    The strcmp() function return an integer less than...

    The strcmp() function return an integer less than zero or equal
    to zero(If both strings are same) or greater than zero.
Results 1 to 3 of 3