What library is sizeof in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is a const pointer?
suppose there are five integers write a program to find larger among them without using if- else
What is data structure in c language?
Is main() function predfined or userdefined?
What is the difference between procedural and functional programming?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
Explain spaghetti programming?
What is volatile variable how do you declare it?
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
what are the various memory handling mechanisms in C ?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??