vu cs504 Mid Term Subjective Solved Past Paper No.1
vu cs504 Software Engineering - I Solved Past Papers
This subjective solved past paper is related to book/course code vu cs504 Software Engineering - I which belongs to vu organization. We have 7 past papers available related to the book/course Software Engineering - I. This past paper has a total of 10 subjective questions belongs to topic Mid Term to get prepared. NVAEducation wants its users to help them learn in an easy way. For that purpose, you are free to get prepared for exams by learning subjective questions online on NVAEducatio.
NVAEducation also facilitates users to download these solved past papers with an affordable prices. However, users are not enforced to pay for money, rather they can use credits to buy such stuff on NVAEducation. Users can earn credits for doing some little tasks and then you will be able to use that credits to buy solved past papers on NVAEducation.
int func(int num1, int num2);
int func(int, int);
func(5, 6) ;
int func(int num1, int num2){}
int func(int num1, int num2);
- Function call: Function;
- Function definition: Integer;
- Function declaration: Num1 and Num2
int func(int, int);
- Function call: Function ;
- Function definition: Integer;
- Function declaration: integers
func(5, 6) ;
- Function call: Function;
- Function definition: numbers;
- Function declaration: 5 & 6
int func(int num1, int num2){}
- Function call: Function ;
- Function definition: Integer;
- Function declaration: Num1 and Num2
- IF statement is used when we have to check two conditions while switch is a multi conditional control statement.
- SWITCH statement can be executed with all cases if the "break" statement is not used whereas IF statement has to be true to be executed further.
int x , y ;
int *ptr1 = &x ;
int *ptr2 =&y ;
ptr1+ptr2;
int i;
int * ptri;
ptri = &i;