What is the difference between #include <header file> and #include “header file”?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between text and binary i/o?
where does malloc() function get the memory?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
If input is 123 then how to print 100 and 20 and 3 seperately?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
Define Array of pointers.
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
How do you convert strings to numbers in C?
How do I send escape sequences to control a terminal or other device?