Give the rules for variable declaration?
No Answer is Posted For this Question
Be the First to Post Answer
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
Does c have an equivalent to pascals with statement?
Write a program that accept anumber in words
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
How would you find a cycle in a linked list?
What is #define size in c?
How can you avoid including a header more than once?
Is struct oop?
What is non linear data structure in c?
simple program for virtual function?
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
What are static variables in c?