Search:

Type: Posts; User: phanideepak007

Search: Search took 0.01 seconds.

  1. @laserlight...

    @laserlight sorry to mix up ur concept with what i have learned about storage classes ... I normally see the variables in the form of SCOPES and duration.. The main has got BLOCK SCOPE according...
  2. I made few changes to your program such that u...

    I made few changes to your program such that u can understand the concept better.. The 'i' in function has function scope(constrained to fucntion) and 'i' in main has block scope(Constrained to...
  3. Replies
    17
    Views
    1,905

    Also check this

    U should also use conversion specifiers with scanf() if then ur output looks as u intended to be ...
    like this :
    scanf("%d",&nu);
    scanf("%d",&num);
  4. Replies
    7
    Views
    1,650

    the printf() function uses the % symbol to...

    the printf() function uses the % symbol to identify the conversion specifications, there is a slight problem if you want to print the % sign itself. If you simply use a lone % sign, the compiler...
  5. Thanks a ton..!! Its all clear now ... :) That is...

    Thanks a ton..!! Its all clear now ... :) That is what happening in source file ... :)
  6. Many Thanks ... !!! Will look into it...:)

    Many Thanks ... !!! Will look into it...:)
  7. Can we use structure written in a header in another header without calling header

    Hi All,
    Can we use structure or function or variable written in a header into another header without including name of header of which we are going to use the struc or func or variable of that...
Results 1 to 7 of 7