Difference between macros and inline functions? Can a function be forced as inline?
No Answer is Posted For this Question
Be the First to Post Answer
What is function prototype in c with example?
Why is sizeof () an operator and not a function?
What is static memory allocation? Explain
Write a function to find the area of a triangle whose length of three sides is given
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
write a program of bubble sort using pointer?
Does c have circular shift operators?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance