What are structures and unions? State differencves between them.
No Answer is Posted For this Question
Be the First to Post Answer
What are the modifiers available in c programming language?
How does C++ help with the tradeoff of safety vs. usability?
what is self refrential structure
What are the different types of objects used in c?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
What is extern variable in c with example?
Write a program to print prime nums from 1-20 using c programing?
Can math operations be performed on a void pointer?
Can we initialize extern variable in c?
c program to input values in a table(using 2D array) and print odd numbers from them
Write a c program using for loop in switch case?
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee