What is sizeof c?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a multi-statement macro?
What is the purpose of the preprocessor directive error?
main() { printf("hello"); fork(); }
Write a program which returns the first non repetitive character in the string?
Can a variable be both const and volatile?
What is variable in c example?
What is the use of ?
The variables are int sum=10,SuM=20; these are same or different?
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
Why doesn't C have nested functions?
what is a function method?give example?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???