what would be the output of the follwing
struct st
{
char name[20];
int i;
float f;
};
main()
{
struct st emp = {"forum"};
printf("%d %f",emp.i,emp.f);
}
Answer Posted / ajay
0 0.000000
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How can you access memory located at a certain address?
Describe the steps to insert data into a singly linked list.
What is the deal on sprintf_s return value?
What is a void * in c?
Explain what is gets() function?
Tell us bitwise shift operators?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What's the best way of making my program efficient?
What is the difference between mpi and openmp?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Explain is it valid to address one element beyond the end of an array?
formula to convert 2500mmh2o into m3/hr
What is a static function in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What does 4d mean in c?