What is c language in simple words?
No Answer is Posted For this Question
Be the First to Post Answer
What is enumerated data type in c?
How are structure passing and returning implemented?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
What is an operator?
Differentiate between the expression “++a” and “a++”?
Explain #pragma statements.
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Differentiate between functions getch() and getche().
What are the two types of functions in c?
Write a program to find factorial of a number using recursive function.
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
Write a program that takes a 5 digit number and calculates 2 power that number and prints it