can any one provide me the notes of data structure for
ignou cs-62 paper
No Answer is Posted For this Question
Be the First to Post Answer
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
what is the differance between pass by reference and pass by value.
What are structure types in C?
What is a nested loop?
what is the flow of execution in cprogram? ex:printf();,scanf();
Who developed c language and when?
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What is the scope of global variable in c?