What is character set?
No Answer is Posted For this Question
Be the First to Post Answer
What is the advantage of an array over individual variables?
Why cant I open a file by its explicit path?
What is a struct c#?
What is spaghetti programming?
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?
what is the output of printf("%d",(scanf("%d",10));
what is link list?
define string ?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
What is LINKED LIST? How can you access the last element in a linked list?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What is the condition that is applied with ?: Operator?