What is the equivalent code of the following statement in WHILE LOOP format?
No Answer is Posted For this Question
Be the First to Post Answer
What is a volatile keyword in c?
What is the difference between Printf(..) and sprint(...) ?
Write a C program to print 1 2 3 ... 100 without using loops?
Explain what math functions are available for integers? For floating point?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
What is zero based addressing?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Can include files be nested?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is a floating point in c?
What is abstract data structure in c?
How do I create a directory? How do I remove a directory (and its contents)?