Why & is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference b/w Structure & Union?
What is clrscr ()?
How main function is called in c?
What is an identifier?
What is Bitwise Operator and how it works?
Differentiate b/w Modify and Update commands giving example.
how we can make 3d venturing graphics on outer interface
What are the different types of storage classes in C?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is the difference between printf and scanf in c?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?