Question:What will be output if you will compile and execute the following c code?


#include<stdio.h>
int main(){
  char c='0';
  printf("%d %d",sizeof(c),sizeof('0'));
  return 0;

A 1 1 

B 2 2 

C 1 2 

D 2 1 

E None 

+ Answer
+ Report
Total Preview: 1073

Copyright © 2024. Powered by Intellect Software Ltd