What are the two types of structure?
No Answer is Posted For this Question
Be the First to Post Answer
What are 'near' and 'far' pointers?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
Explain what does the format %10.2 mean when included in a printf statement?
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
Function to find the given number is a power of 2 or not?
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is wrong in this statement? scanf(“%d”,whatnumber);
what is c programming?
What is getche() function?