Search:

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

Search: Search took 0.00 seconds.

  1. Answers
    15
    Views
    13,505

    Re: test your c skills

    Your way is interesting and give more chance for further manipulation of the loop. Thanks!

    #include<stdio.h>

    int main()
    {
    int comp, i, j;
    int k = 2;

    for( i = 0; i < 7; i++)
  2. Answers
    15
    Views
    13,505

    Re: test your c skills

    #include <stdio.h>

    int main() {

    int i, j ; /* loop variables */

    for ( i = 4 ; i > 0; i-- ) {
    for ( j = 0 ; j < 4-i ; j++ ) {
    printf( "%c", '*' ) ;
    }
  3. Answers
    15
    Views
    13,505

    Re: test your c skills

    #include <stdio.h>

    int main() {

    int i, j ; /* loop variables */

    for ( i = 4 ; i > 0; i-- ) {
    for ( j = 0 ; j < 4-i ; j++ ) {
    printf( "%c", '*' ) ;
    }
  4. Answers
    1
    Views
    3,409

    Modularity using Functions

    Determine the output generated by the following code segments, assuming the surrounding program code (whatever it is) compiles correctly.

    int F1 (int a, int b);
    int F2 (int b, int c);

    ...
Results 1 to 4 of 8
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