What is the equivalent code of the following statement in WHILE LOOP format?
No Answer is Posted For this Question
Be the First to Post Answer
can we initialize all the members of union?
i want to job in your company, so how it will be possible.
How do you initialize pointer variables?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
where can function pointers be used?
Explain why can’t constant values be used to define an array’s initial size?
what value is returned to operating system after program execution?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
what is linkage error when it occurs in c program
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.