Is there a way to jump out of a function or functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is the right type to use for boolean values in c?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
Tell me when would you use a pointer to a function?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
Tell me what is null pointer in c?
Compare array data type to pointer data type
Software Interview Questions
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
How can you read a directory in a C program?
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.