How old is c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What are the similarities between c and c++?
What is maximum size of array in c?
What is the use of function overloading in C?
How to print "I Love My India" without using semi colon?
What are the different types of pointers used in c language?
Write the Program to reverse a string using pointers.
const char * char * const What is the differnce between the above tow?.
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
What is variable and explain rules to declare variable in c?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.
Is there sort function in c?