What are variables c?
No Answer is Posted For this Question
Be the First to Post Answer
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
char ch="{'H','I',0};printf("%s",ch);what is output
how can I convert a string to a number?
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
prog for 1st five prime numbers in 2^x - 1
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
What’s a signal? Explain what do I use signals for?