Search:

Type: Posts; User: srinurocks

Search: Search took 0.01 seconds.

  1. Thread: structure

    by srinurocks
    Replies
    4
    Views
    1,131

    structure

    hello guys,

    can we use same name for both structure name and it's variable.

    thak u
    bye
    srinu
  2. Thread: comparing

    by srinurocks
    Replies
    3
    Views
    851

    comparing

    hello guys,


    here is my problem


    main()
    {
    char st[]="hello";
    char str[]="hai";
  3. Thread: sizeof

    by srinurocks
    Replies
    3
    Views
    993

    sizeof

    hai ,


    float a[]={0,9,8,7};
    printf("%d",sizeof(a)/sizeof(a[0])



    what is the o/p & why explain me
  4. Replies
    1
    Views
    1,162

    initializing

    hello guys,


    char far *a=0x00000120

    can anyone please explain me the above statement


    bye
    srinu
  5. Replies
    1
    Views
    731

    far,near,huge

    hello guys,

    what is this far,near,huge can anyone please expain me these

    bye
    srinu
  6. Thread: pointers

    by srinurocks
    Replies
    4
    Views
    848

    pointers

    hello guys,

    here is my problem


    if wer are adding a value to address like

    if the address location is 1002

    if we add 1002+1 what it will show
  7. Thread: extern

    by srinurocks
    Replies
    2
    Views
    805

    extern

    hello guys,


    what is the "extern" do ,what's the purpose of that and where we have to use this .


    thank u


    bye
  8. Replies
    3
    Views
    1,265

    varible declartion

    hello

    here is my problem

    char far s,s2;

    what is far in the above statement.
    and how it differs with ordinary one.

    thank u
  9. Thread: basic

    by srinurocks
    Replies
    1
    Views
    849

    basic

    hello ,

    please give me answer for the question

    printf("%f",a+a+a);

    printf("%f",3*a);


    is there any difference between the two statements ,if so please explain me
  10. Replies
    3
    Views
    896

    c programming

    hello everybody,
    here is my problem,

    main()
    {
    float a=0.7;
    if (a<0.7)
    printf("c");
    else
    printf("c++");
  11. Replies
    1
    Views
    1,842

    what does these mean

    hello guys,
    please explain me the following in detail.

    what does these mean,

    int(*p)[10]
    int*f()
    int(*pf)()
    int*p[10]
  12. Replies
    3
    Views
    1,707

    functions passing values

    hello guys,
    here i've doubt.here in this program just i called one function and displayed the values.but i'm not returing any value ,but i'm getting one value .please tell me why it's comming ?

    ...
  13. Thread: pointers

    by srinurocks
    Replies
    2
    Views
    1,571

    pointers

    hello guys,
    here is my problem, pls go through.
    pls tell me the answer and ***why***

    main()
    {
    int *p,*q;
    p=(int *)1000;
    q=(int *)2000;
    printf("%d",(q-p));
  14. Replies
    1
    Views
    1,313

    c/c++ programming

    hello guys,
    here is my problem

    #include<stdio.h>
    main()
    {
    int a=2;
    int b=9;
    int c=1;
    while(b)
  15. Replies
    1
    Views
    858

    c/c++ programming

    hello everybody,

    What is the memory allocated by the following definition ?
    int (*x)[10];

    srinu
    with regards
  16. Replies
    4
    Views
    814

    c/c++ prpgramming

    hello everybody,
    here i've one problem .can u guys please tell me what is output and *why?
    main()
    {
    unsigned int i=10;
    while(i>=0)
    {
    printf("%u\n",i);
    i--;
    }
  17. Replies
    7
    Views
    1,090

    c++ programming

    hello everybody,
    how invokes the main() function in c/c++ programmes
Results 1 to 17 of 17