What does sizeof function do?
No Answer is Posted For this Question
Be the First to Post Answer
What are the key features in c programming language?
What is a #include preprocessor?
What is echo in c programming?
What are directives in c?
Define circular linked list.
What are linker error?
. 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.
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
What is pragma c?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
What do you mean by keywords in c?