How are variables declared in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
Is a house a mass structure?
What is a structure member in c?
What is the difference between single charater constant and string constant?
How can I find out how much free space is available on disk?
Create a simple code fragment that will swap the values of two variables num1 and num2.
How can you be sure that a program follows the ANSI C standard?
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
How can a string be converted to a number?
what is differnence b/w macro & functions
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"