How can you draw circles in C?
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program to build a heap method using Pointer to function and pointer to structure ?
0 Answers MAHINDRA, Protech, Sivan Tech,
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
Is fortran still used in 2018?
Why is sprintf unsafe?
Write a program to reverse a given number in c?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Why is it usually a bad idea to use gets()? Suggest a workaround.
can we implement multi-threads in c.
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
Explain what is the heap?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }