what are the facialities provided by you after the
selection of the student.
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I convert a string to a number?
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
what r the cpu registers r ther?
Explain what is the most efficient way to store flag values?
we have a 3litres jug and a 5 litres jug and no measures on them. using these two jugs how can we measure 4 litres of water?
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
What is a example of a variable?
why you will give me a job in TCS.
What is the size of enum in bytes?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
What is function prototype in c language?