answersLogoWhite

0

What is void for vagueness?

Updated: 12/15/2022
User Avatar

Wiki User

10y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is void for vagueness?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

C progamme for conversion of Celsius to Fahrenheit using array?

main void void void (void) { float temp1 [13]= {1,4,2,3,4,5,7,88,9,4,3,23,12};


How do you Write a function prototype for a function named printStars that accepts no arguments and returns no data?

void printStarts (void);


What are the seven abstract method of window listener in java?

# void windowActivated(WindowEvent e); # void windowClosed(WindowEvent e); # void windowClosing(WindowEvent e); # void windowDeactivated(WindowEvent e); # void windowDeiconified(WindowEvent e); # void windowIconified(WindowEvent e); # void windowOpened(WindowEvent e);


What is a void abinitio?

void since the start. :)


A pointer to a function which receives nothing and returns nothing?

void (*funptr)(void); void fun (void); int main () { funptr = fun; funptr (); }