Search:

Type: Posts; User: aman15490; Keyword(s):

Page 1 of 4 1 2 3 4

Search: Search took 0.00 seconds.

  1. Answers
    4
    Views
    7,312

    Re: java source file into byte code

    javac is JAVA Compiler.
  2. Answers
    2,332
    Views
    429,880

    Re: Thoughts of the day.

    If you are passionate about your purpose, of what you want to be; if you believe in yourself; you will do everything possible to make it happen. No one in this world can really stop you from reaching...
  3. Thread: about malloc

    by aman15490
    Answers
    3
    Views
    3,591

    Re: about malloc

    Yes malloc() allocates memory in contiguous location.
    To verify it see this program

    #include<stdio.h>
    void main()
    {
    int *p;
    int i;
    p=(int *)malloc(5);
    i=1;
  4. Answers
    4
    Views
    5,091

    Re: Use of sizeof in Malloc

    No it is not essential to use sizeof() operator in malloc().

    The prototype of malloc() function is :
    type pointer= (type *) malloc(number of bytes);

    Thus you can see that we only need to...
  5. Answers
    4
    Views
    5,795

    Re: Functions in stdlib.h

    system() is used to issue system command .
    it's prototype is present in stdlib.h
    on success it returns 0 else it returns a -1.
    System() accepts string as an argument
    it's prototype is :
    int...
  6. Answers
    2
    Views
    8,378

    Re: Memory Function in C

    The declaration of memset function is as follows
    void* memset(void* s, int c, int n);
    the memset function sets the first n bytes in s to c.

    Generally this function is used to set a memory...
  7. Answers
    2
    Views
    223,048

    Re: Format specifiers in C

    format specifiers for integer data type

    short signed &#37;d or %i
    short unsigned %u
    long signed %ld
    long unsigned %lu
    unsigned...
  8. Answers
    14
    Views
    14,644

    Re: What does printf function returns?

    I Completely agree with what mohantyrk is saying.It returns the no of characters inside " " (Double quote). On error it returns EOF.
  9. Answers
    2
    Views
    5,660

    please eeeeeeeeeeeeeeee

    Just give me an code that will read charactrs from the console untill # is given and displayed them after #is hit. /* it's urgent please it will take your few minutes to type the code*/
  10. Answers
    1
    Views
    3,041

    Test your programming skills

    please give me an difficult program in c which under the following chapters:- 1> loops 2> decision statements 3> arrays( upto two-dimension only) 4>and other programs on basics 5>strings.
  11. Answers
    6
    Views
    3,707

    If someone can answer

    Why c is a middle level language ?
  12. Answers
    13
    Views
    5,238

    Re: Is this a correct statement

    Not at all !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  13. Answers
    13
    Views
    5,238

    Re: Is this a correct statement

    Not at all ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  14. Answers
    4
    Views
    3,648

    test your thinking power

    which of THE LOOPS IS BETTER?
    1> for() loop
    2> while() loop
    3> do -while loop

    and if so than whyyyyy???????????????
  15. Answers
    2
    Views
    5,499

    test your collection of books

    please please pleaseee.... give me the names of some good C books
  16. Answers
    12
    Views
    4,637

    Re: Reason for the following programm's output!

    you must write it as
    printf("%d %d",a,b);
    or it may also happen that you have written
    printf("%d %d",b,a);
  17. Answers
    15
    Views
    13,447

    test your c skills

    program for output as shown below taking input from user (i.e number of lines of the output) in c language (actually the correct output is not coming on the screen correctly,but what you are seeing...
Results 1 to 17 of 91
Page 1 of 4 1 2 3 4
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact