#include<stdio.h>
main(0
{
printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3));
}

Answer Posted / ajay

syntax error

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a code on reverse string and its complexity.

621


What is an auto keyword in c?

654


What is the explanation for modular programming?

696


Which is better pointer or array?

612


What is #include stdio h and #include conio h?

608






How can you convert integers to binary or hexadecimal?

626


What is else if ladder?

622


What is difference between structure and union?

610


Explain the array representation of a binary tree in C.

736


Tell us bitwise shift operators?

608


Explain how can you avoid including a header more than once?

609


Explain enumerated types in c language?

613


What is a char c?

601


What is d'n in c?

651


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1273