for(i=1;i>0;i++);
printf("i=%d",i);
what will be the answer????
Answer Posted / guest
4
| Is This Answer Correct ? | 0 Yes | 18 No |
Post New Answer View All Answers
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.
Is r written in c?
What is clrscr in c?
What is a good data structure to use for storing lines of text?
What is the argument of a function in c?
Is c language still used?
Not all reserved words are written in lowercase. TRUE or FALSE?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
Describe the difference between = and == symbols in c programming?
What is operator precedence?
In a switch statement, explain what will happen if a break statement is omitted?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
How is pointer initialized in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is the use of f in c?