int i=3; this declaration tells the C compiler to
a) reserve space in memory to hold the integer value
b) associate the name i with this memory location
c) store the value 3 at this location
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
Write a program of prime number using recursion.
using for loop sum 2 number of any 4 digit number in c language
What is the difference between variable declaration and variable definition in c?
HOW TO SWAP TWO NOS IN ONE STEP?
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.
write a program to add two numbers of any size.....(remember any size)
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
What is structure pointer in c?
When is a void pointer used?