main()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
Answer Posted / manish soni bca 3rd year jaipu
#include<stdio.h>
#include<conio.h>
void main()
{
printf("%d %d %d",sizeof('3'),sizeof("3"),sizeof
(3));
getch();
}
answer is:-
1 2 2
on Turbo C++ 4.5 on win base at win 7
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
Write a program to swap two numbers without using a temporary variable?
Explain argument and its types.
How to explain the final year project as a fresher please answer with sample project
Explain heap and queue.
I heard that you have to include stdio.h before calling printf. Why?
In C programming, what command or code can be used to determine if a number of odd or even?
What is dynamic variable in c?
Why c is called a mid level programming language?
What is null pointer in c?
What is console in c language?
can we implement multi-threads in c.
How will you divide two numbers in a MACRO?
What is the value of c?
Can you tell me how to check whether a linked list is circular?
Can you apply link and association interchangeably?