Is c call by value?
No Answer is Posted For this Question
Be the First to Post Answer
What is the OOPs concept?
What is structure padding & expalain wid example what is bit wise structure?
What is variable and explain rules to declare variable in c?
write a program to concatenation the string using switch case?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
Who is invented by c?
When should volatile modifier be used?
Describe advantages and disadvantages of the various stock sorting algorithms
Why does everyone say not to use gets?
Can you define which header file to include at compile time?
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?