Search:

Type: Posts; User: Timon

Search: Search took 0.00 seconds.

  1. Here is the solution: #include...

    Here is the solution:




    #include<stdio.h>

    void printdata(int *array, int length)
    {
    for(int i=0;i<length;i++)
  2. Replies
    6
    Views
    1,747

    If your are running the code in windows then use...

    If your are running the code in windows then use the function getch() after the print statement.




    #include <stdio.h>
    #include<conio.h>
    int main()
    {
    char me[20];
  3. Question is bit ambiguous. Are you trying to pass...

    Question is bit ambiguous. Are you trying to pass the values as arguments to function and that function should store that in array?
  4. Replies
    12
    Views
    19,298

    !(1 || 0) ANSWER 0. Logical operators are...

    !(1 || 0) ANSWER 0.

    Logical operators are usually used to apply on the result of the two or more conditional statements that returns either true or false.
    like if((a>b) ||(a>c)).

    Any non...
Results 1 to 4 of 4