What is the c value paradox and how is it explained?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to display reverse of a number using for loop?
How many data structures are there in c?
What is realloc in c?
Explain what is the stack?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Why does this code crash?
Is int a keyword in c?
How can you print HELLO WORLD without using "semicolon"?
#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.
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
How to create struct variables?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }