What is the size of array float a(10)?
No Answer is Posted For this Question
Be the First to Post Answer
All technical questions
write a program to print largest number of each row of a 2D array
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
how to create duplicate link list using C???
Describe dynamic data structure in c programming language?
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
What is difference between structure and union?
Write a program to check prime number in c programming?
write a 'c' program to sum the number of integer values
What do header files do?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What is the explanation for prototype function in c?