Can we initialize extern variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between class and object in c?
How can you determine the size of an allocated portion of memory?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
what is event driven software and what is procedural driven software?
What is pass by value in c?
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
What are preprocessor directives in c?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
What is structure packing in c?
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Can a function argument have default value?
Explain what is a program flowchart and explain how does it help in writing a program?