What is bash c?
No Answer is Posted For this Question
Be the First to Post Answer
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Explain modulus operator. What are the restrictions of a modulus operator?
Explain the properties of union.
Is there a way to compare two structure variables?
An array name contains base address of the array. Can we change the base address of the array?
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"
How can I trap or ignore keyboard interrupts like control-c?
input any 4 digit number and find the difference of all the digits?
yogesh patil in dell
Can you define which header file to include at compile time?
Write a program in c to input a 5 digit number and print it in words.
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason