What is meant by preprocessor in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is macro?
What is the acronym for ansi?
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
Why is c still so popular?
How does the C program handle segmentation faults?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
can we access one file to one directory?
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is static memory allocation? Explain