One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
No Answer is Posted For this Question
Be the First to Post Answer
int x=sizeof(!5.856); What will value of variable x?
main() { int i=400,j=300; printf("%d..%d"); }
What does the && operator do in a program code?
what is difference between C and C++
How are Structure passing and returning implemented by the complier?
What is %d called in c?
What's wrong with "char *p = malloc(10);" ?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
wat are the two methods for swapping two numbers without using temp variable??
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
How can I split up a string into whitespace-separated fields?