What header files do I need in order to define the standard library functions I use?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between union and structure in c?
from which concept of 'c', the static member function of 'c++' has came?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
I heard that you have to include stdio.h before calling printf. Why?
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
What are volatile variables in c?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
What is the purpose of macro in C language?
how to introdu5ce my self in serco
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
How to define structures? ·