Are pointers integers in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are directives in c?
What ios diff. Between %e & %f?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
Differentiate fundamental data types and derived data types in C.
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
What is the use of c language in real life?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
What is #define?
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????