Search:

Type: Posts; User: sameertelkar

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    740

    I forgot to add printf statement,thanks sonjared....

    I forgot to add printf statement,thanks sonjared.


    main()
    {
    char ch;
    printf("enter an alphabet");
    scanf("%c",&ch);
    printf("%d",ch);
    if(ch>=65 && ch<=90)
  2. Replies
    3
    Views
    740

    Need help getting output.........

    main()
    {
    char ch;
    printf("enter an alphabet");
    scanf("%c",&ch);
    if(ch>=65 && ch<=90)
    return(ch);
    else
    return(ch+10);
    }
Results 1 to 2 of 2