What is the use of the sizeof operator?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
The sizeof operator determines the size of a data type or variable in bytes.
| Is This Answer Correct ? | 0 Yes | 0 No |
The sizeof operator determines the size of a data type or variable in bytes.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why can't we initialise member variable of a strucutre
Sir i need notes for structure,functions,pointers in c language can you help me please
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
write a program to print data of 5 five students with structures?
How do you write a program which produces its own source code as output?
nic scientist exam
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
write a proram to reverse the string using switch case?
What are the 5 types of inheritance in c ++?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
Is an array parameter is always "by reference" ?