Do character constants represent numerical values?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me when would you use a pointer to a function?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
what is the difference between malloc() and calloc() function?
What is typedef struct in c?
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
What are the key features of C?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is the heap?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
what are the various memory handling mechanisms in C ?
What are the advantages of Macro over function?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain