What is scope and lifetime of a variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
can a union be self-referenced?
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 the difference between exit() and _exit() function?
How can I convert integers to binary or hexadecimal?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
Why is struct padding needed?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
write a programme that inputs a number by user and gives its multiplication table.
i have a written test in tomorrow
Is c is a procedural language?
Write a program that his output 1 12 123
Why c is called object oriented language?