how many keywords are available in 'c' language
a) 32
b) 34
c) 45
d) 48
what is the basis for selection of arrays or pointers as data structure in a program
Write a routine that prints out a 2-D array in spiral order!
What is pragma c?
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
Did c have any year 2000 problems?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
An array name contains base address of the array. Can we change the base address of the array?
Can the sizeof operator be used to tell the size of an array passed to a function?
write a program to remove duplicate from an ordered char array? in c
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
What are the application of void data type in c?