What are the key features in c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
Write a simple program to find the size of different basic data types in C.
Is double link list a linear data structure? If Yes, Why?If No, Why?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
input any 4 digit number and find the difference of all the digits?
Define C in your own Language.
What is pointer to pointer in c?
What is a macro, and explain how do you use it?
what is the difference between #include<> and #include”…”?
Explain how do you print only part of a string?
Why we use break in c?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
what is the difference between #include<stdio.h> and #include"stdio.h" ?