Submitted Questions

  • what is the output of the program

    {geshibot language="c"}#include int main() { printf("%c",*"abcde"); return 0; }{/geshibot}

    nitin cahauhan

    • Dec 28th, 2012

    Here in printf %c is consider for only a character not for a string so it will print only first letter or character of string i.e a

    Anik

    • Dec 22nd, 2012

    Answer is a