Explain the properties of union. What is the size of a union variable
No Answer is Posted For this Question
Be the First to Post Answer
errors in computer programmes are called
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
How can this be legal c?
how to set Nth bit of variable by using MACRO
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
while initialization of array why we use a[][2] why not a[2][]...?
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
what is the difference between static variable and register variable?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
What is console in c language?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above