what is event driven software and what is procedural driven
software?
No Answer is Posted For this Question
Be the First to Post Answer
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
What is the sizeof () operator?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Is main a keyword in c?
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
Explain following declaration int *P(void); and int (*p)(char *a);
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Write a program to print "hello world" without using a semicolon?
Write a program in c using only loops to print * * * * * *******