Why is c called a mid-level programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different types of objects used in c?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
ATM machine and railway reservation class/object diagram
What are the disadvantages of external storage class?
write a program to print %d ?
Why shouldn’t I start variable names with underscores?
what are you see during placement time in the student.
0 Answers Goldman Sachs, TCS, Tech Solutions,
how to swap four numbers without using fifth variable?
Can we declare a function inside a function in c?
int i=10; printf("%d %d %d", i, i=20, i);
Why header file is used in c?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.