Search:

Type: Posts; User: md_nayeem

Search: Search took 0.00 seconds.

  1. there was a spelling mistake occurred during the...

    there was a spelling mistake occurred during the thread post.the thread was How to design a class in c ++program?Explain.
  2. How to design a class in c ++program?Explain.

    How to design a class in c++ program?Explain.Thanks in advance.
  3. Replies
    2
    Views
    1,340

    How to write this program by using C++

    Read the input numbers were given in a txt file and find out the maximum number, minimum number and the sum of those input numbers were given in that file as output by using C++ Programming in simple...
  4. Replies
    2
    Views
    1,515

    what is the problem in this program?

    #include<stdio.h>
    main()
    {
    int a[]={1,2,3,4,5};
    evenshow(a);
    }
    void evenshow(int a[])
    {
    int i;
    for(i=0;i<=5;i++)
  5. Replies
    2
    Views
    5,994

    Implement function into this program?

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


    struct Books {
    char Name[50];
    char author[50];
    char subject[100];
    int book_id;
    };
  6. GIVE ME AN EXAMPLE WITH C PROGRAM IF IT IS...

    GIVE ME AN EXAMPLE WITH C PROGRAM IF IT IS POSSIBLE FOR YOU.tHANKS IN ADVANCE.
  7. I need help to understand how can i write a c program for storing 10 books informatio

    i need help to understand how can i write a c program for storing 10
    books information like book name,authorname,depertment of book
    by using structure and function in c .
  8. Thanks a lot Hodor...

    Thanks a lot Hodor.
  9. char bname [20]; but after solve this problem i...

    char bname [20];
    but after solve this problem i got more error after compile and run this program.
  10. No it is not for homework.I was trying to write...

    No it is not for homework.I was trying to write a program for storing book information using structure and array in c program.I am new in c programming Language.For this i find this kind of...
  11. Where are the Errors in this Programs? I can not understand.

    #include <stdio.h>

    struct Bookinfo
    {
    char[20] bname;
    int pages;
    int price;
    }book[3];

    int main(int argc, char *argv[])
  12. Replies
    1
    Views
    1,824

    I need to understand this program.

    #include<stdio.h>
    main()
    {
    int i,j;
    for(i=1;i<=4;i++)
    {
    for(j=1;j<=4-i;j++)
    {
    printf(" ");
    }
  13. I customize this code as your instruction.Now...

    I customize this code as your instruction.Now this program is valid or not.If i compile this code and run .It give me Error.



    #include <stdio.h>
    main()
    {
    int i,j;
    int...
  14. I tried like this but it did not worked: ...

    I tried like this but it did not worked:


    #include <stdio.h>
    main()
    {
    int i,j;
    int arr[2][5]={{1,2,3,4,5},{6,7,8,9,10}};
    for(i=0;i<10;i++){
    int flag = 1;
  15. I need an Example.I can not understand how to do...

    I need an Example.I can not understand how to do that.
  16. I am new in c programming.can i get a example how...

    I am new in c programming.can i get a example how to do this kind of declaration in this programming.
  17. I tried like this but it did not worked: ...

    I tried like this but it did not worked:


    #include <stdio.h> int main()


    int arr[2][5]={1,2,3,4,5},{6,7,8,9,10}}; // only for testing purpose
    int i,j;
    for (i=0;i<10;i++) {
    int flag = 1;
  18. I am new in Array programming.So i was trying to...

    I am new in Array programming.So i was trying to write a program by using c programming.The Question is"storing 10 number into one/two dimensional array & Print Only Prime Number by using c...
  19. How can i write this program by using 2d array.

    #include <stdio.h>int main()
    {
    int arr[10]={1,2,3,4,5,6,7,8,9,10}; // only for testing purpose
    int i,j;
    for (i=0;i<10;i++) {
    int flag = 1;
    if (arr[i] == 1) flag = 0;
    for...
  20. Replies
    1
    Views
    2,173

    what is the problem in this program?

    #include <stdio.h>
    int main()
    {
    int arr[10];
    int i;
    for (i=0;i<10;i++) {
    scanf("%d",&arr[i]);
    }
    for (i=0;i<10;i++) {
    int flag = 1;
  21. I am new in c programming.How can i solve this problem

    Squere number storing 10 number into two dimensional array & Print Only Prime Number.
  22. I am new in C programming language .so i am confused how can i write this kind of pro

    I am new in C programming language .so i am confused how can i write this kind of program:
    storing 10 number into one/two dimensional array & Print Only Prime Number by using c programming Language...
Results 1 to 22 of 22