c language interview questions & answer
No Answer is Posted For this Question
Be the First to Post Answer
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 are local static variables?
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
How does struct work in c?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
write a program to display the frequency of each element in a given array in c language
When should you not use a type cast?
How can I read data from data files with particular formats?
How is a pointer variable declared?