What is external variable in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
Can you think of a way when a program crashed before reaching main? If yes how?
What is || operator and how does it function in a program?
regarding pointers concept
what is linkage error when it occurs in c program
What is static identifier?
#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?
What is the meaning of 2d in c?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Without using main fn and semicolon,print remainder for a given number in C language
convert 12345 to 54321 withoutusing strig