What is array of pointers to string?
No Answer is Posted For this Question
Be the First to Post Answer
Is int a keyword in c?
Differentiate between declaring a variable and defining a variable?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
pascal triangle program
int *a[5] refers to
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
If the size of int data type is two bytes, what is the range of signed int data type?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
What is main void in c?
What is array within structure?