272 views
0 votes
0 votes
#include<stdio.h>
int main()
{
    char num = '\011';
    printf("%d",num);
    return 0;
}

 

1 Answer

Related questions

3 votes
3 votes
1 answer
1
Khushal Kumar asked Jul 7, 2017
635 views
#include <stdio.h>int main(){ int i = 8; int p = i++*i++; printf("%d\n", p);}
1 votes
1 votes
2 answers
2
Khushal Kumar asked Jul 7, 2017
634 views
#include <stdio.h int x = 20; int f1() { x = x+10; return x;} int f2() { x = x-5; return x;} int main() { int p = f1() + f2(); printf ("p = %d", p); return 0; }
0 votes
0 votes
1 answer
3
2 votes
2 votes
0 answers
4