write a program to print data of 5 five students with
structures?
No Answer is Posted For this Question
Be the First to Post Answer
how to introdu5ce my self in serco
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Can you define which header file to include at compile time?
Explain what is wrong with this program statement?
how to devloped c lenguege?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
Can we initialize extern variable in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }