Search:

Type: Posts; User: vead

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    10,856

    I understood the difference. I can see in...

    I understood the difference. I can see in experiment. If I don't use the static before variable then, every function call, the value of variable doesn't change. if the I use the static before...
  2. Replies
    10
    Views
    10,856

    I did the two experiment. I printed value with...

    I did the two experiment. I printed value with static and without static

    Program with static

    #include<stdio.h>
    void loop (void)
    {
    static int count = 0;
    printf("Number : %d...
  3. Replies
    10
    Views
    10,856

    I didn't get your point What is the meaning of...

    I didn't get your point What is the meaning of those lines why you are incrementing counter in loop function
  4. Replies
    10
    Views
    10,856

    Static storage class

    What happen when we use static storage class in front of variable name

    If I use static or if I don't use static in this program, nothing change

    What the benefits of static storage class in...
  5. Replies
    3
    Views
    29,093

    I understood where I was confuse addition with...

    I understood where I was confuse
    addition with no return type but passing value

    #include <stdio.h>
    void addition(int x, int y);


    int main(void)
    {
    int a = 10; int b = 20;
  6. Replies
    3
    Views
    29,093

    error: void value not ignored as it ought to be

    I am getting this error: void value not ignored as it ought to be in my program. What is this error and how to remove it?


    #include <stdio.h>

    void addition(int x, int y);


    int main(void)
    {
  7. Replies
    9
    Views
    9,994

    so when we don't initialize array it will store...

    so when we don't initialize array it will store garbage value


    #include<stdio.h>int main(){

    int array[4];


    printf("array element : %d \n", array[0]);
    printf("addaress of array : %d...
  8. Replies
    9
    Views
    9,994

    Both initialized and uninitialized aray print...

    Both initialized and uninitialized aray print the same value zd. Working size for both will same
  9. Replies
    9
    Views
    9,994

    I am confused on two line's what happen when they...

    I am confused on two line's what happen when they run on machine

    1.What happen when this line execute a[4]; ?
    what would be the size of array for int a[4]; i think it would be 16

    2.What...
  10. Replies
    9
    Views
    9,994

    What happen in this case when int a[4]; How...

    What happen in this case when int a[4];

    How much size array take 16 bytes because int take one byte to one one integer value so this array will store 4 integer that mans it will take 16 bytes
    ...
  11. Replies
    9
    Views
    9,994

    What is size of array

    What would be size of int a[4];


    #include<stdio.h>int main ()
    {
    int a[4];
    int n = sizeof(a);
    printf (" Size of array %d ", n);
    return 0;
    }
  12. Replies
    9
    Views
    9,811

    Thanks to all of you #includeint...

    Thanks to all of you


    #include<stdio.h>int main ()
    {
    int array[10], size, number, found;
    int i = 0;
    printf("Enter size : ");
    scanf("%d", &size);
    for(i = 0; i < size;...
  13. Replies
    9
    Views
    9,811

    If I do this, then both of statement's, if...

    If I do this, then both of statement's, if statement and else statement ​​will print because they will be under the for loop


    #include<stdio.h>
    int main (){
    int array[10], size, number,...
  14. Replies
    9
    Views
    9,811

    if i initialize variable i then it execute ...

    if i initialize variable i then it execute

    number = array[0];

    I am assuming first number of array is specif number and if it's not then compare with next index

    #include<stdio.h>int main...
  15. Replies
    9
    Views
    9,811

    Find specific number in array

    I am trying to find the specific number in array. if user enter number ie 5 then program should be able to find that the number is present in array or not if it present in array then print number...
  16. Replies
    6
    Views
    11,908

    so we don't need integer array terminator in c

    so we don't need integer array terminator in c
  17. Replies
    6
    Views
    11,908

    I will do this #include int main()...

    I will do this


    #include <stdio.h>int main()
    {
    int i = 0;
    int array[5] = {0,2,3,4,0};

    while (array[i] != 5)
    {
  18. Replies
    6
    Views
    11,908

    integer null terminator

    How do we terminate integer array in while loop


    #include <stdio.h>int main()
    {
    int i;
    int array[5] = {0,2,3,4,0};

    while (array[i] != 0)
    {
  19. Replies
    5
    Views
    3,909

    #include #include int...

    #include <stdio.h>#include <string.h>
    int main(void)
    {
    char string[10] [10], temp[10];
    int i, j, n;

    printf ("\n Pramot user to Enter size: ");
    scanf ("%s", &n);

    ...
  20. Replies
    5
    Views
    3,909

    Sort Strings in Alphabetical Order

    I want to short string in Alphabetical Order


    #include <stdio.h> int main(void)
    {
    char string[10] [10], temp;
    int i, j, n;

    printf ("\n Pramot user to Enter size: ");
    scanf...
  21. Replies
    7
    Views
    5,536

    Okay but still unclear does it mean's that...

    Okay but still unclear

    does it mean's that the array storing four number's and if I want to print them , Then I have to write loop for it
  22. Replies
    7
    Views
    5,536

    So the 'for' loop is only used to print array...

    So the 'for' loop is only used to print array number

    What happen when we write this line ​
    intarray[4]= {2,2,3,4};

    does it mean's that the array storing four number's and if I want to print...
  23. Replies
    7
    Views
    5,536

    What happen when this program execute ...

    What happen when this program execute

    #include<stdio.h>

    int main (void)
    {
    int i;
    int array[4]= {2,2,3,4};
    for(i=0; i<4; i++)
    {
  24. Replies
    7
    Views
    5,536

    storing number to array

    what is use of for loop after decleration of array

    #include<stdio.h>int main (void)
    {
    int i;
    int array[4]= {2,2,3,4};
    for(i=0; i<4; i++)
    {
    printf("print array element : %d \n",...
  25. Replies
    4
    Views
    2,735

    when I remove address of variable in this program...

    when I remove address of variable in this program they it doesn't show result and if put Adrress & then it show result

    #include <stdio.h>

    int main()
    {
    int Number;

    printf("Enter...
Results 1 to 25 of 100
Page 1 of 4 1 2 3 4