Explain bitwise shift operators?
No Answer is Posted For this Question
Be the First to Post Answer
What is a static function in c?
Why c is called free form language?
Do you know pointer in c?
what is default constructor?
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
What are register variables? What are the advantage of using register variables?
Create a simple code fragment that will swap the values of two variables num1 and num2.
Why is c called c not d or e?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
what is the code to display color fonts in the output?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Write a program to print fibonacci series without using recursion?