what is the difference between #include<stdio.h> and
#include"stdio.h" ?
Answer Posted / mytri
#include<stdio.h>--Search from current directory
#include"stdio.h"--Search from list of directories that are
included in path
| Is This Answer Correct ? | 61 Yes | 28 No |
Post New Answer View All Answers
What is the use of function in c?
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
Write a program to check whether a number is prime or not using c?
can we have joblib in a proc ?
Where register variables are stored in c?
What is modeling?
What’s a signal? Explain what do I use signals for?
What are the advantages of Macro over function?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Discuss the function of conditional operator, size of operator and comma operator with examples.
Can the sizeof operator be used to tell the size of an array passed to a function?
What do you mean by command line argument?
How do you define structure?
What are global variables and explain how do you declare them?