Sunday, 2 November 2014

Questions for starters...

1) What should be the output of the following?

#include<stdio.h>
int main(){
   int result=68;
   result++;
   printf("%d\n", result);
    /*
    ++result;
    /*
    result++;
    */
    */
   printf("%c\n", result);
}

No comments:

Post a Comment