Place the #include statement must be written in the program?
No Answer is Posted For this Question
Be the First to Post Answer
Write the control statements in C language
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Can you assign a different address to an array tag?
How many types of arrays are there in c?
What is a function in c?
how to write a bubble sort program without using temporary variable?
What language is windows 1.0 written?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
C,c++, Java is all are structural oriented or procedure oriented language..?
Explain function?