What does sizeof function do?
No Answer is Posted For this Question
Be the First to Post Answer
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
What are Macros? What are its advantages and disadvantages?
Explain what is a program flowchart and explain how does it help in writing a program?
Explain the Difference between the New and Malloc keyword.
write a program to print sum of each row of a 2D array.
What is switch in c?
What is null pointer in c?
Why shouldn’t I start variable names with underscores?
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
out put of printf(ā%dā,printf(ram));
What is build process in c?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?