Click here to Skip to main content
15,881,715 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how to transparent MFC activeX control Pin
B060611522-Jun-09 18:43
B060611522-Jun-09 18:43 
AnswerRe: how to transparent MFC activeX control Pin
Member 348023222-Jun-09 23:02
Member 348023222-Jun-09 23:02 
GeneralRe: how to transparent MFC activeX control Pin
B060611523-Jun-09 0:16
B060611523-Jun-09 0:16 
AnswerRe: how to transparent MFC activeX control Pin
Member 348023223-Jun-09 4:34
Member 348023223-Jun-09 4:34 
QuestionProblem in output Pin
Gjm21-Jun-09 23:27
Gjm21-Jun-09 23:27 
AnswerRe: Problem in output Pin
CPallini21-Jun-09 23:32
mveCPallini21-Jun-09 23:32 
AnswerRe: Problem in output Pin
Fatbuddha 122-Jun-09 2:01
Fatbuddha 122-Jun-09 2:01 
QuestionRe: Problem in output Pin
David Crow22-Jun-09 3:44
David Crow22-Jun-09 3:44 
Gjm wrote:
I want to load an array and print the array using pointer.


Are you wanting something like this:

void main( void )
{
    int a[2][2],i,j,m,n,*p;
 
    printf("\nEnter the order:");
    scanf("%d%d", &m, &n);
     
    printf("\nEnter the elements:\n");
    for (i = 0; i < m; i++)
    {
        for (j = 0; j < n; j++)
        {
            scanf("%d", &a[i][j]);
        }
    }
 
    p = a[0];
     
    printf("\n\nThe elements are:\n");
    for (i = 0; i < m; i++)
    {
        printf("%d\n", *(p + i));
    }
}


"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons


Question[Message Deleted] Pin
jitendrapothuru21-Jun-09 22:15
jitendrapothuru21-Jun-09 22:15 
AnswerRe: multiple comport settings to be taken Pin
chandu00421-Jun-09 22:30
chandu00421-Jun-09 22:30 
General[Message Deleted] Pin
jitendrapothuru21-Jun-09 22:34
jitendrapothuru21-Jun-09 22:34 
GeneralRe: multiple comport settings to be taken Pin
chandu00421-Jun-09 22:41
chandu00421-Jun-09 22:41 
General[Message Deleted] Pin
jitendrapothuru21-Jun-09 22:47
jitendrapothuru21-Jun-09 22:47 
GeneralRe: multiple comport settings to be taken Pin
Cedric Moonen21-Jun-09 22:51
Cedric Moonen21-Jun-09 22:51 
General[Message Deleted] Pin
jitendrapothuru21-Jun-09 23:03
jitendrapothuru21-Jun-09 23:03 
GeneralRe: multiple comport settings to be taken Pin
Cedric Moonen21-Jun-09 23:06
Cedric Moonen21-Jun-09 23:06 
General[Message Deleted] Pin
jitendrapothuru21-Jun-09 23:12
jitendrapothuru21-Jun-09 23:12 
GeneralRe: multiple comport settings to be taken Pin
Cedric Moonen21-Jun-09 23:17
Cedric Moonen21-Jun-09 23:17 
General[Message Deleted] Pin
jitendrapothuru21-Jun-09 23:21
jitendrapothuru21-Jun-09 23:21 
GeneralRe: multiple comport settings to be taken Pin
Cedric Moonen21-Jun-09 23:23
Cedric Moonen21-Jun-09 23:23 
General[Message Deleted] Pin
jitendrapothuru21-Jun-09 23:25
jitendrapothuru21-Jun-09 23:25 
GeneralRe: multiple comport settings to be taken Pin
Cedric Moonen21-Jun-09 23:28
Cedric Moonen21-Jun-09 23:28 
General[Message Deleted] Pin
jitendrapothuru21-Jun-09 23:37
jitendrapothuru21-Jun-09 23:37 
GeneralRe: multiple comport settings to be taken Pin
Cedric Moonen21-Jun-09 23:47
Cedric Moonen21-Jun-09 23:47 
General[Message Deleted] Pin
jitendrapothuru21-Jun-09 23:58
jitendrapothuru21-Jun-09 23:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.