Write a simple program to find the size of different basic
data types in C.
Answer Posted / jugad
#include
#include
int main()
{
printf(“%d %d %d %d”,sizeof(int),sizeof(unsigned
int),sizeof(float),sizeof(char));
getch();
return 0;
}
courtesy:http://answerwale.co.cc/?p=23
| Is This Answer Correct ? | 21 Yes | 7 No |
Post New Answer View All Answers
What is the difference between fread and fwrite function?
Write a function that will take in a phone number and output all possible alphabetical combinations
What is the difference between malloc calloc and realloc in c?
What are the application of c?
What is equivalent to ++i+++j?
Explain what is a program flowchart and explain how does it help in writing a program?
Explain what is gets() function?
How can a program be made to print the name of a source file where an error occurs?
Is main a keyword in c?
What is action and transformation in spark?
What do you mean by keywords in c?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
how to find anagram without using string functions using only loops in c programming
write a program to create a sparse matrix using dynamic memory allocation.
Is c is a middle level language?