Search:

Type: Posts; User: Yugal

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,650

    Oh, I did not know it, I thought it will read...

    Oh, I did not know it, I thought it will read ASCII value of Character, if Integer is not in input.
  2. Replies
    3
    Views
    1,650

    How %d format specifier actually works?

    #include <stdio.h>int main()
    {
    int a,b;
    printf("enter numbers\n");
    scanf("%d",&a);
    printf("enter number\n");
    scanf("%d",&b);
    printf("Numbera are %d %d",a,b);
    ...
  3. I have already read there, can't find answer...

    I have already read there, can't find answer there. I want to know only name of sorting technique used here.
  4. What kind of sorting Algorithm has been used here?

    #include <stdio.h>
    #define MAX_SIZE 100 // Maximum array size

    int main()
    {
    int arr[MAX_SIZE];
    int size;
    int i, j, temp;

    /* Input size of array */
Results 1 to 4 of 4