What are global variables and explain how do you declare them?
No Answer is Posted For this Question
Be the First to Post Answer
What does stand for?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
How can I access a memory located at certain address?
When should you not use a type cast?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What does == mean in texting?
What is d'n in c?
What is the advantage of a random access file?
explain about storage of union elements.
What does d mean?
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation