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
What are the types of data files?
Explain which function in c can be used to append a string to another string?
Explain how do you use a pointer to a function?
If errno contains a nonzero number, is there an error?
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
How can I get the current date or time of day in a c program?
What are actual arguments?
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?
Who is invented by c?
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
write a program to delete an item from a particular location of an linear array?