Interviewer And Interviewee Guide

C Pointers Interview Question:

Can you combine the following two statements into one?
char *p;
p = (char*) malloc(100);
A. char p = *malloc(100);
B. char *p = (char) malloc(100);
C. char *p = (char*)malloc(100);
D. char *p = (char *)(malloc*)(100);

Submitted by: Muhammad
Option C
(char *p = (char*)malloc(100);)
Submitted by: Muhammad

Read Online C Pointers Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.