Search:

Type: Posts; User: shuaib.akram

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    3,826

    hi..

    i have to prepare for a competition.....
    so i was in search of them...
    i wanted a few for practice....
    i know many sites where there are algorithm design questions... like spoj, topcoder........
  2. Replies
    4
    Views
    3,826

    thanks..

    hey... thank u for replying...
    but i need more questions....
    can i get any material or books or url???
  3. Replies
    4
    Views
    3,826

    need debugging questions....

    hi every one...
    i need a few debugging questions in C to practice...
    i googled for it but couldnt find anything useful..
    can any one tell me where i can find them...
    if any one has any e books.....
  4. Thread: time

    by shuaib.akram
    Replies
    3
    Views
    1,120

    couldnt find any thing here

    am sorry!!!!!!!!!!
    i didnot find any thing in above link.......
    it just opened google.com
    can any one plzzz help????
    thank you.............
  5. Thread: time

    by shuaib.akram
    Replies
    3
    Views
    1,120

    time

    i want to know system time using c
    i hve seen inbuilt functions in "time.h" can any one tell me the code for it
    thank you
  6. Replies
    3
    Views
    4,643

    int i; int a[10],b[10],c[10]; for(i=0;i

    int i;
    int a[10],b[10],c[10];
    for(i=0;i<10;i++)
    scanf("&#37;d",&a[i]);
    for(i=0;i<10;i++)
    scanf("%d",&b[i]);

    now
    suppouse i entered 1,2,3 in a[0],a[1],a[2]
    and 4,5,6 in b[0],b[1],b[2]...
  7. Replies
    3
    Views
    4,643

    union of two sets

    i have two sets which i assigned them in an array
    i want to have the union of two sets in a new array
    can any one help
  8. Replies
    5
    Views
    2,521

    Hey I Hve Some Idea About Making Games Using C...

    Hey
    I Hve Some Idea About Making Games Using C And C++
    Am Interested To Help You
  9. Replies
    4
    Views
    2,046

    i want to compile that program in c can i do...

    i want to compile that program in c
    can i do that??

    i mean with out writing the whole code again
  10. Replies
    4
    Views
    2,046

    how to convert notepad

    i hve a program in c language in notepad
    is there any way by which we can run that program in c??
    plz help
  11. Replies
    2
    Views
    1,417

    need help for foxpro

    can any one tell me where can i get tutorials for FOXPRO 2.6
  12. Thread: code help

    by shuaib.akram
    Replies
    6
    Views
    1,165

    sorry for the unclear question we can write...

    sorry for the unclear question

    we can write code for all the inbuilt functions with out using that inbuilt function
    for example
    strlen(stringname) gives length of the string
    but without using...
  13. Replies
    4
    Views
    1,374

    should the output give 5=1+4 also ?? if not ...

    should the output give
    5=1+4
    also ??
    if not
    how did u specify that only those outputs have to be shown??
  14. Thread: code help

    by shuaib.akram
    Replies
    6
    Views
    1,165

    can you be a littlie bit more specific couldnt...

    can you be a littlie bit more specific
    couldnt understand what u told
  15. Thread: code help

    by shuaib.akram
    Replies
    6
    Views
    1,165

    code help

    can any one tell how to write coding for a printf statement
    without using printf command?
  16. Replies
    14
    Views
    1,572

    USE THIS LOOP for(i=0;i

    USE THIS LOOP



    for(i=0;i<10;i++)
    printf("&#37;d",(10-i)*a[i]);

    this will work
  17. Thread: graphics

    by shuaib.akram
    Replies
    4
    Views
    1,447

    i am using a turbo c2 compiler also plz tell...

    i am using a turbo c2 compiler

    also plz tell me syntax of initgraph();
    THANK YOU all for the help
  18. Thread: graphics

    by shuaib.akram
    Replies
    4
    Views
    1,447

    graphics

    hi every one

    i want to draw a circle using graphics


    #include<stdio.h>
    #inlcude<graphics.h>
    {
    circle(20,20,10);
    getch();
  19. #include main() { int n,i,f=0;...

    #include<stdio.h>
    main()
    {
    int n,i,f=0;
    printf("enter any number");
    scanf("&#37;d",&n);
    for(i=2;i<n;i++)
    {
    if(n%i==0)
    f=1;
  20. Replies
    2
    Views
    1,527

    return type

    in c we need not mention return type
    directly we can use main();


    but in c++ we have to mention return type
    ie void main();
    or int main();
    etc why is this so??
  21. Replies
    1
    Views
    1,002

    why is this so?

    in c if we use main();
    we donot get any error
    but in c++ we have to mention the return type
    can any one tell me why is this??
  22. Replies
    7
    Views
    2,242

    hey can u tell me why fflush is wrong?? still it...

    hey can u tell me why fflush is wrong??
    still it clears your problem??
  23. Replies
    4
    Views
    1,450

    can you give an example or be a little bit...

    can you give an example
    or be a little bit clearer
  24. Replies
    24
    Views
    1,942

    #include #include int...

    #include <stdio.h>
    #include <string.h>

    int main(void)
    {
    char name[20];
    float weight;
    float height;

    printf("Enter your name:");
  25. Replies
    7
    Views
    2,242

    #include int main(int argc, char**...

    #include <stdio.h>

    int main(int argc, char** argv)
    {
    char c;
    int d;
    printf("Enter a no:\n");
    scanf("&#37;d",&d);
    printf("Enter a character\n");
    fflush(stdin);
Results 1 to 25 of 34
Page 1 of 2 1 2