What is static volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Explain how do you determine the length of a string value that was stored in a variable?
What's the difference between a linked list and an array?
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
What is call by value in c?
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
What is character constants?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above