what is the difference between #include<> and #include”…”?
Answer Posted / sravankumar
The #include<> and #include" " are almost same, but #include<>
searches the included file in predefined default location(This predefined default location is often an INCLUDE environment variable that denotes the path to your include files)i.e searches the location where the predefined function are present in installed C language, whereas #include" " searches the included file in the current directory first , if not found then goes to the predefined default location.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is switch in c?
How can you increase the size of a statically allocated array?
Why is python slower than c?
Can we increase size of array in c?
Write a program to print numbers from 1 to 100 without using loop in c?
When would you use a pointer to a function?
write a c program in such a way that if we enter the today date the output should be next day's date.
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
What are the standard predefined macros?
What is enumerated data type in c?
What is a pointer in c?
What is console in c language?
What are the 5 types of organizational structures?
program to convert a integer to string in c language'
What is extern storage class in c?