Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answer Posted / g.deepa
#include"stdio.h" is the creating by the user
(within Double quotes header files are created by the user)
#include<stdio.h> is the header file of programming
language.It is the created by the Programmers.
| Is This Answer Correct ? | 9 Yes | 10 No |
Post New Answer View All Answers
Hi can anyone tell what is a start up code?
write a program to print largest number of each row of a 2D array
What is the value of c?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is the maximum length of an identifier?
What is #line?
What is the correct declaration of main?
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]
Explain the difference between exit() and _exit() function?
What does struct node * mean?
Can I initialize unions?
What are linked lists in c?
What does sizeof int return?
What is wrong with this initialization?