What kind of structure is a house?
No Answer is Posted For this Question
Be the First to Post Answer
What are the back slash character constants or escape sequence charactersavailable in c?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
How can I direct output to the printer?
When is a void pointer used?
write a program to rearrange the array such way that all even elements should come first and next come odd
How can I find the day of the week given the date?
Can we replace the struct function in tree syntax with a union?
Write a routine that prints out a 2-D array in spiral order!
How do you determine if a string is a palindrome?
what is the meaning of java that is (J A V A) full form of JAVA
71 Answers AKS University, Bhel, BNL, BPO, HCL, Peacecon,
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
What is meant by int fun const(int a, int b) { .... ... }